GT2/Ejectable/screens/TripScreen.tsx

77 lines
1.4 KiB
TypeScript
Raw Normal View History

2021-08-16 07:50:50 +00:00
import * as React from 'react';
2021-08-16 22:39:34 +00:00
import { Button, StyleSheet, Alert } from 'react-native';
2021-08-16 07:50:50 +00:00
import { Text, View } from '../components/Themed';
2021-08-17 21:05:34 +00:00
import { ScreenInfo2 } from '../components/ScreenInfo';
2021-08-20 11:23:16 +00:00
import { GT2, thisTrip } from '../GT2';
2021-08-16 07:50:50 +00:00
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
2021-08-16 22:39:34 +00:00
controls: {
width: "80%",
flexDirection: 'row',
justifyContent: "space-between",
},
2021-08-16 07:50:50 +00:00
title: {
fontSize: 20,
fontWeight: 'bold',
},
separator: {
2021-08-17 21:05:34 +00:00
marginVertical: 10,
2021-08-16 07:50:50 +00:00
height: 1,
width: '80%',
},
});
2021-08-18 18:21:15 +00:00
function startTrip() {
2021-08-20 08:41:16 +00:00
thisTrip.start();
2021-08-18 18:21:15 +00:00
Alert.alert('Trip Started');
}
function pauseTrip() {
2021-08-20 11:23:16 +00:00
thisTrip.pause();
2021-08-18 18:21:15 +00:00
Alert.alert('Trip Paused');
}
function endTrip() {
2021-08-20 08:41:16 +00:00
thisTrip.end();
2021-08-18 18:21:15 +00:00
Alert.alert('Trip Ended');
}
export default function TripScreen() {
2021-08-20 08:41:16 +00:00
2021-08-20 11:23:16 +00:00
return (
2021-08-18 18:21:15 +00:00
<View style={styles.container}>
<Text style={styles.title}>Trip Control</Text>
<View style={styles.separator} lightColor="#eee" darkColor="rgba(255,255,255,0.1)" />
<ScreenInfo2 />
<View style={styles.controls} >
<Button
title="Start"
onPress={() => startTrip() }
/>
<Button
title="Pause"
onPress={() => pauseTrip()}
/>
<Button
title="Stop"
onPress={() => endTrip() }
/>
</View>
2021-08-20 11:23:16 +00:00
< thisTrip.TripDisplay />
2021-08-18 18:21:15 +00:00
</View>
);
}