This is a sample of displaying a button in ReactNative.
Press the button to display the alarm.
react-native: 0.56.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
import {AppRegistry} from 'react-native'; | |
import { | |
StyleSheet, | |
Button, | |
View, | |
Alert | |
} from 'react-native'; | |
import {name as appName} from './app.json'; | |
export class App extends Component { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<Button | |
color="red" | |
title={'Press Me'} | |
onPress={()=>Alert.alert('Hello')} | |
/> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
}, | |
}); | |
AppRegistry.registerComponent(appName, () => App); |