File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { StatusBar } from 'expo-status-bar' ;
2+ import { StyleSheet , Text , View } from 'react-native' ;
3+
4+ export default function App ( ) {
5+ return (
6+ < View style = { styles . container } >
7+ < Text > Planner Mobile — Today, Quick Capture, Timers (scaffold)</ Text >
8+ < StatusBar style = "light" />
9+ </ View >
10+ ) ;
11+ }
12+
13+ const styles = StyleSheet . create ( {
14+ container : {
15+ flex : 1 ,
16+ backgroundColor : '#0b0b0b' ,
17+ alignItems : 'center' ,
18+ justifyContent : 'center' ,
19+ } ,
20+ } ) ;
21+
22+
Original file line number Diff line number Diff line change 1+ {
2+ "expo" : {
3+ "name" : " Planner Mobile" ,
4+ "slug" : " planner-mobile" ,
5+ "version" : " 0.0.1" ,
6+ "orientation" : " portrait" ,
7+ "icon" : " ./assets/icon.png" ,
8+ "splash" : {
9+ "image" : " ./assets/splash.png" ,
10+ "resizeMode" : " contain" ,
11+ "backgroundColor" : " #0b0b0b"
12+ },
13+ "updates" : {
14+ "fallbackToCacheTimeout" : 0
15+ },
16+ "assetBundlePatterns" : [
17+ " **/*"
18+ ],
19+ "ios" : {
20+ "supportsTablet" : true
21+ },
22+ "android" : {
23+ "adaptiveIcon" : {
24+ "foregroundImage" : " ./assets/adaptive-icon.png" ,
25+ "backgroundColor" : " #0b0b0b"
26+ }
27+ },
28+ "web" : {
29+ "favicon" : " ./assets/favicon.png"
30+ }
31+ }
32+ }
33+
34+
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " planner-mobile" ,
3+ "private" : true ,
4+ "version" : " 0.0.1" ,
5+ "main" : " App.js" ,
6+ "scripts" : {
7+ "start" : " expo start" ,
8+ "android" : " expo run:android" ,
9+ "ios" : " expo run:ios" ,
10+ "web" : " expo start --web"
11+ },
12+ "dependencies" : {
13+ "expo" : " ~51.0.17" ,
14+ "react" : " 18.2.0" ,
15+ "react-native" : " 0.74.3" ,
16+ "expo-status-bar" : " ~1.12.1"
17+ }
18+ }
19+
20+
Original file line number Diff line number Diff line change 11{
22 "name" : " planner" ,
33 "private" : true ,
4- "workspaces" : [" ." ],
4+ "workspaces" : [" ." , " apps/* " ],
55 "version" : " 0.1.0" ,
66 "type" : " module" ,
77 "scripts" : {
You can’t perform that action at this time.
0 commit comments