Skip to content

Commit 63d3cd8

Browse files
Cellular demo implmenetation page.
1 parent 0667d21 commit 63d3cd8

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

app/(tabs)/four.tsx

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)