Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
react-native-js-bottom-sheet
Advanced tools
Modal bottom sheet component for Android and iOS that follows the guidelines of Material Design.
Modal bottom sheet component for Android that follows the guidelines of Material Design.
https://material.io/guidelines/components/bottom-sheets.html
$ yarn add react-native-js-bottom-sheet
Code refers to the previous image example:
/* @flow */
import React, { Component } from 'react'
import { AppRegistry, StyleSheet, Text, View, Button } from 'react-native'
import BottomSheet from 'react-native-js-bottom-sheet'
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'
import Entypo from 'react-native-vector-icons/Entypo'
export default class Example extends Component {
bottomSheet: BottomSheet
_onPressButton = () => {
this.bottomSheet.open()
}
render() {
return (
<View style={styles.container}>
<Button title="Open" onPress={this._onPressButton} />
<BottomSheet
ref={(ref: BottomSheet) => {
this.bottomSheet = ref
}}
itemDivider={3}
backButtonEnabled={true}
coverScreen={false}
title="Create"
options={[
{
title: 'Document',
icon: (
<MaterialCommunityIcons
name="file-document-box"
color="#2186fa"
size={24}
/>
),
onPress: () => null
},
{
title: 'Spreadsheet',
icon: <Entypo name="spreadsheet" color="#43a047" size={24} />,
onPress: () => null
},
{
title: 'Folder',
icon: (
<MaterialCommunityIcons name="folder" color="grey" size={24} />
),
onPress: () => null
},
{
title: 'Upload photos or videos',
icon: (
<MaterialCommunityIcons
name="cloud-upload"
color="grey"
size={24}
/>
),
onPress: () => null
},
{
title: 'Use Camera',
icon: (
<MaterialCommunityIcons name="camera" color="grey" size={24} />
),
onPress: () => null
}
]}
isOpen={false}
/>
</View>
)
}
}
Prop | Type | Required | Description |
---|---|---|---|
coverScreen | bool | No | Will use RN Modal component to cover the entire screen wherever the modal is mounted in the component hierarchy |
backButtonEnabled | bool | No | Close modal when receiving back button event |
height | number | No | Height of the container. By default it has no height, due to container grows automatically depending of list of elements |
title | string | Yes | Title displayed in top of list |
options | Array | Yes | Array of objects to display options list |
fontFamily | string | No | Used to display values. By default is Roboto |
titleFontFamily | string | No | Title font family |
isOpen | bool | No | Specifies if bottom sheet is open by default |
itemDivider | number | No | Insert an item separator below the specified item number |
MIT License
Copyright (c) 2017 InterfaceKit
Antonio Moreno Valls <amoreno at apsl.net>
Built with 💛 by APSL.
FAQs
Modal bottom sheet component for Android and iOS that follows the guidelines of Material Design.
We found that react-native-js-bottom-sheet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.