react native action sheet


react native action sheet

import { useActionSheet } from '@expo/react-native-action-sheet' export default function App () { const { showActionSheetWithOptions } = useActionSheet(); /* ... */ } import { ActionSheetCustom as ActionSheet } from 'react-native-actionsheet' const options = [ 'Cancel', 'Apple', <Text style={{color: 'yellow'}}>Banana</Text>, 'Watermelon', <Text style={{color: 'red'}}>Durian</Text> ] class Demo extends React.Component { showActionSheet = () => { this.ActionSheet.show() } render() { return ( <View...


#android #ios #react #reactnative #리액트 #리액트네이티브 #앱개발

원문링크 : react native action sheet