This commit is contained in:
Ren Juan 2021-08-17 15:38:51 +00:00
parent 63b18ef1ac
commit e62e8df3b6
4 changed files with 22 additions and 11 deletions

View File

@ -6068,6 +6068,15 @@
"url-parse": "^1.4.4" "url-parse": "^1.4.4"
} }
}, },
"expo-location": {
"version": "12.1.2",
"resolved": "https://registry.npmjs.org/expo-location/-/expo-location-12.1.2.tgz",
"integrity": "sha512-6P/JR8xkw7UjifiDhyvgYtGZ1iKSLjmAcb0Ksirh3jA3Sao7dbz5ykPu44+UnUZ/SLVqaScJoyMkGclFrtzu8Q==",
"requires": {
"@expo/config-plugins": "^3.0.0",
"expo-modules-core": "~0.2.0"
}
},
"expo-modules-autolinking": { "expo-modules-autolinking": {
"version": "0.0.3", "version": "0.0.3",
"resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.0.3.tgz", "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.0.3.tgz",

View File

@ -28,11 +28,12 @@
"react": "16.13.1", "react": "16.13.1",
"react-dom": "16.13.1", "react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz", "react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-reanimated": "~2.2.0",
"react-native-gesture-handler": "~1.10.2", "react-native-gesture-handler": "~1.10.2",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.2.0", "react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.4.0", "react-native-screens": "~3.4.0",
"react-native-web": "~0.13.12" "react-native-web": "~0.13.12",
"expo-location": "~12.1.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.9.0", "@babel/core": "^7.9.0",

View File

@ -3,6 +3,7 @@ import { StyleSheet, Switch, TextInput } from 'react-native';
import { Text, View } from '../components/Themed'; import { Text, View } from '../components/Themed';
import { useState } from 'react'; import { useState } from 'react';
import SettingsScreenInfo from '../components/SettingsScreenInfo'; import SettingsScreenInfo from '../components/SettingsScreenInfo';
import { SafeAreaView } from 'react-native-safe-area-context';
export default function SettingsScreen() { export default function SettingsScreen() {
const [text, onChangeText] = React.useState("Useless Text"); const [text, onChangeText] = React.useState("Useless Text");
@ -14,23 +15,23 @@ export default function SettingsScreen() {
<View style={styles.container}> <View style={styles.container}>
<Text style={styles.title}>Model Settings</Text> <Text style={styles.title}>Model Settings</Text>
<View style={styles.separator} lightColor="#eee" darkColor="rgba(255,255,255,0.1)" /> <View style={styles.separator} lightColor="#eee" darkColor="rgba(255,255,255,0.1)" />
<SettingsScreenInfo /> <SettingsScreenInfo />
<Switch <Switch
trackColor={{ false: "#767577", true: "#81b0ff" }} trackColor={{ false: "#767577", true: "#81b0ff" }}
thumbColor={true ? "#f5dd4b" : "#f4f3f4"} thumbColor={true ? "#f5dd4b" : "#f4f3f4"}
ios_backgroundColor="#3e3e3e" ios_backgroundColor="#3e3e3e"
onValueChange={toggleUnits} onValueChange={toggleUnits}
value={isKM} value={isKM}
/> />
<TextInput <TextInput
style={styles.input} style={styles.input}
onChangeText={onChangeNumber} onChangeText={onChangeNumber}
value={number} value={number}
defaultValue="0.66666"
returnKeyType={'done'}
placeholder="CO2 Per km/mi" placeholder="CO2 Per km/mi"
keyboardType="numeric" keyboardType="numeric"
/> />
</View> </View>
); );
} }

View File

@ -1,6 +1,6 @@
{ {
"extends": "expo/tsconfig.base", "extends": "expo/tsconfig.base",
"compilerOptions": { "compilerOptions": {
"strict": false "strict": true
} }
} }