blob: e6fbd5b43ae8767da64cd1744b0fed1e835e2d1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import { StyleSheet, Text, View } from "react-native";
import { StatusBar } from "expo-status-bar";
import { Button } from "ui";
export default function Native() {
return (
<View style={styles.container}>
<Text style={styles.header}>Native</Text>
<Button
onClick={() => {
console.log("Pressed!");
alert("Pressed!");
}}
text="Boop"
/>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
header: {
fontWeight: "bold",
marginBottom: 20,
fontSize: 36,
},
});
|