Commit 796e4266 by g-ouattara

after commands yarn biome-check

parent ccf72c82
import { StatusBar } from 'expo-status-bar'; import { StatusBar } from "expo-status-bar";
import { StyleSheet, Text, View } from 'react-native'; import { StyleSheet, Text, View } from "react-native";
export default function App() { export default function App() {
return ( return (
<View style={styles.container}> <View style={styles.container}>
<Text>Open up App.tsx to start working on your app!</Text> <Text>Open up App.tsx to start working on your app!</Text>
<StatusBar style="auto" /> <StatusBar style="auto" />
</View> </View>
); );
} }
const styles = StyleSheet.create({ const styles = StyleSheet.create({
container: { container: {
flex: 1, flex: 1,
backgroundColor: '#fff', backgroundColor: "#fff",
alignItems: 'center', alignItems: "center",
justifyContent: 'center', justifyContent: "center",
}, },
}); });
{ {
"expo": { "expo": {
"name": "beasy-mobile", "name": "beasy-mobile",
"slug": "beasy-mobile", "slug": "beasy-mobile",
"version": "1.0.0", "version": "1.0.0",
"orientation": "portrait", "orientation": "portrait",
"icon": "./assets/icon.png", "icon": "./assets/icon.png",
"userInterfaceStyle": "light", "userInterfaceStyle": "light",
"splash": { "splash": {
"image": "./assets/splash.png", "image": "./assets/splash.png",
"resizeMode": "contain", "resizeMode": "contain",
"backgroundColor": "#ffffff" "backgroundColor": "#ffffff"
}, },
"assetBundlePatterns": [ "assetBundlePatterns": ["**/*"],
"**/*" "ios": {
], "supportsTablet": true
"ios": { },
"supportsTablet": true "android": {
}, "adaptiveIcon": {
"android": { "foregroundImage": "./assets/adaptive-icon.png",
"adaptiveIcon": { "backgroundColor": "#ffffff"
"foregroundImage": "./assets/adaptive-icon.png", }
"backgroundColor": "#ffffff" },
} "web": {
}, "favicon": "./assets/favicon.png"
"web": { }
"favicon": "./assets/favicon.png" }
}
}
} }
{ {
"extends": "expo/tsconfig.base", "extends": "expo/tsconfig.base",
"compilerOptions": { "compilerOptions": {
"strict": true "strict": true
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment