ReactNativeでよくあるButtonです。
1 2 3 4 5 6 7 8 |
import { Button } from 'react-native'; <Button onPress={onPressLearnMore} title="Button" color="#841584" accessibilityLabel="Learn more about this purple button" /> |
ReactNativeでよくあるButtonです。
1 2 3 4 5 6 7 8 |
import { Button } from 'react-native'; <Button onPress={onPressLearnMore} title="Button" color="#841584" accessibilityLabel="Learn more about this purple button" /> |