70 lines
1.6 KiB
TypeScript
70 lines
1.6 KiB
TypeScript
|
import * as WebBrowser from 'expo-web-browser';
|
||
|
import React, { useState} from 'react';
|
||
|
import { Button, StyleSheet, TouchableOpacity } from 'react-native';
|
||
|
|
||
|
import Colors from '../constants/Colors';
|
||
|
import { MonoText } from './StyledText';
|
||
|
import { Text, View } from './Themed';
|
||
|
import { TripSummary } from '../GT2';
|
||
|
|
||
|
export default function EndScreenInfo({ path }: { path: string }) {
|
||
|
|
||
|
return (
|
||
|
<View>
|
||
|
<View style={styles.getStartedContainer}>
|
||
|
<Text
|
||
|
style={styles.getStartedText}
|
||
|
lightColor="rgba(0,0,0,0.8)"
|
||
|
darkColor="rgba(255,255,255,0.8)">
|
||
|
Summary of this trip:
|
||
|
</Text>
|
||
|
<TripSummary/>
|
||
|
</View>
|
||
|
|
||
|
<View style={styles.helpContainer}>
|
||
|
<TouchableOpacity onPress={handleHelpPress} style={styles.helpLink}>
|
||
|
<Text style={styles.helpLinkText} lightColor={Colors.light.tint}>
|
||
|
World Bank on Greenhouse Gas Accounting
|
||
|
</Text>
|
||
|
</TouchableOpacity>
|
||
|
</View>
|
||
|
</View>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
function handleHelpPress() {
|
||
|
WebBrowser.openBrowserAsync(
|
||
|
'https://olc.worldbank.org/content/ghg-accounting-101-self-paced'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const styles = StyleSheet.create({
|
||
|
getStartedContainer: {
|
||
|
alignItems: 'center',
|
||
|
marginHorizontal: 50,
|
||
|
},
|
||
|
homeScreenFilename: {
|
||
|
marginVertical: 7,
|
||
|
},
|
||
|
codeHighlightContainer: {
|
||
|
borderRadius: 3,
|
||
|
paddingHorizontal: 4,
|
||
|
},
|
||
|
getStartedText: {
|
||
|
fontSize: 17,
|
||
|
lineHeight: 24,
|
||
|
textAlign: 'center',
|
||
|
},
|
||
|
helpContainer: {
|
||
|
marginTop: 15,
|
||
|
marginHorizontal: 20,
|
||
|
alignItems: 'center',
|
||
|
},
|
||
|
helpLink: {
|
||
|
paddingVertical: 15,
|
||
|
},
|
||
|
helpLinkText: {
|
||
|
textAlign: 'center',
|
||
|
},
|
||
|
});
|