We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa54cb5 commit ed1855eCopy full SHA for ed1855e
1 file changed
app/(tabs)/four.tsx
@@ -0,0 +1,35 @@
1
+import { View, Text, StyleSheet } from "react-native";
2
+import CellularDemo from "@/components/CellularDemo";
3
+
4
+export default function SimplePage() {
5
+ return (
6
+ <View style={styles.container}>
7
+ <Text style={styles.header}>My Header</Text>
8
+ <Text style={styles.text}>
9
+ This is some example text to show a plain page component.
10
+ </Text>
11
+ <CellularDemo />
12
+ </View>
13
+ );
14
+}
15
16
+const styles = StyleSheet.create({
17
+ container: {
18
+ flex: 1,
19
+ justifyContent: "center",
20
+ alignItems: "center",
21
+ padding: 16,
22
+ backgroundColor: "#121212",
23
+ },
24
+ header: {
25
+ fontSize: 24,
26
+ fontWeight: "bold",
27
+ color: "#fff",
28
+ marginBottom: 20,
29
30
+ text: {
31
+ fontSize: 16,
32
+ color: "#ccc",
33
+ textAlign: "center",
34
35
+});
0 commit comments