File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
+ } ) ;
You can’t perform that action at this time.
0 commit comments