react-native-action-sheet-component
react-native-action-sheet-component copied to clipboard
React Native Action Sheet Component for iOS & Android.
I have a problem with `ActionSheetManager` when usage like this: ```javascript import React, { Component } from 'react'; import { Button } from 'react-native'; import ActionSheetManager, { ActionSheet, ActionSheetItem }...
I want to resolve #8 using screen height dimension.
As title, it is easy to reproduce, please see below: ActionSheetManager.show({ style: ThemeStyles.generalItemBg, separatorStyle: ThemeStyles.generalItemBorder, showSelectedIcon: false, children: [ )} />, )} />, )} />, )} />, )} />, )}...
I'm getting the following runtime error > Unknown plugin "flow-react-proptypes" specified in "node_modules/react-native-action-sheet-component/.babelrc.env.development React-native version 0.41.2, iOS
````js import React, { Component } from 'react' import { View, Text, StyleSheet, TouchableOpacity } from 'react-native' import Ionicons from 'react-native-vector-icons/Ionicons' import { ActionSheet, ActionSheetItem } from 'react-native-action-sheet-component' import NavigationBar...
Test case using `react-native-navbar` ````js render() { return ( this.actionSheet.show() }} /> { this.actionSheet = actionSheet }} position="bottom" onChange={this.onChange} > ) } ```` When selecting an item the first time,...