diff --git a/Ejectable/screens/TripScreen.tsx b/Ejectable/screens/TripScreen.tsx index 309d6b20..97e463b8 100644 --- a/Ejectable/screens/TripScreen.tsx +++ b/Ejectable/screens/TripScreen.tsx @@ -2,18 +2,9 @@ import * as React from 'react'; import { Button, StyleSheet, Alert } from 'react-native'; import { Text, View } from '../components/Themed'; import { ScreenInfo2 } from '../components/ScreenInfo'; -import { thisTrip } from '../GT2'; -import { TripStack } from '../navigation/BottomTabNavigator'; +import { GT2, thisTrip } from '../GT2'; const styles = StyleSheet.create({ - tripText: { - marginHorizontal: -100, - marginVertical: 60, - textAlign: 'left', - width: "80%", - fontSize: 12, - fontWeight: 'bold', - }, container: { flex: 1, alignItems: 'center', @@ -44,6 +35,8 @@ function startTrip() { } function pauseTrip() { + + thisTrip.pause(); Alert.alert('Trip Paused'); } @@ -57,8 +50,7 @@ function endTrip() { export default function TripScreen() { - if (!thisTrip.inProgress) - return ( + return ( Trip Control @@ -77,34 +69,7 @@ export default function TripScreen() { onPress={() => endTrip() } /> - - ); else - return ( - - Trip Control - - - -