2019-08-08 18:25:13 +02:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import * as React from 'react';
|
2020-03-06 23:15:01 +01:00
|
|
|
import {Image, ScrollView, View} from 'react-native';
|
2019-08-08 18:25:13 +02:00
|
|
|
import i18n from "i18n-js";
|
2020-03-06 23:15:01 +01:00
|
|
|
import {Text, Card, List, Paragraph} from 'react-native-paper';
|
2019-08-08 18:25:13 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
navigation: Object,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class defining an about screen. This screen shows the user information about the app and it's author.
|
|
|
|
*/
|
|
|
|
export default class ProximoAboutScreen extends React.Component<Props> {
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-03-06 23:15:01 +01:00
|
|
|
<ScrollView style={{padding: 5}}>
|
|
|
|
<View style={{
|
|
|
|
width: '100%',
|
|
|
|
height: 100,
|
|
|
|
marginTop: 20,
|
|
|
|
marginBottom: 20,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center'
|
|
|
|
}}>
|
|
|
|
<Image
|
|
|
|
source={require('../../assets/proximo-logo.png')}
|
|
|
|
style={{flex: 1, resizeMode: "contain"}}
|
|
|
|
resizeMode="contain"/>
|
|
|
|
</View>
|
|
|
|
<Text>{i18n.t('proximoScreen.description')}</Text>
|
|
|
|
<Card style={{margin: 5}}>
|
|
|
|
<Card.Title
|
|
|
|
title={i18n.t('proximoScreen.openingHours')}
|
|
|
|
left={props => <List.Icon {...props} icon={'clock-outline'}/>}
|
|
|
|
/>
|
|
|
|
<Card.Content>
|
|
|
|
<Paragraph>18h30 - 19h30</Paragraph>
|
|
|
|
</Card.Content>
|
|
|
|
</Card>
|
|
|
|
<Card style={{margin: 5}}>
|
|
|
|
<Card.Title
|
|
|
|
title={i18n.t('proximoScreen.paymentMethods')}
|
|
|
|
left={props => <List.Icon {...props} icon={'cash'}/>}
|
|
|
|
/>
|
|
|
|
<Card.Content>
|
|
|
|
<Paragraph>18{i18n.t('proximoScreen.paymentMethodsDescription')}</Paragraph>
|
|
|
|
</Card.Content>
|
|
|
|
</Card>
|
|
|
|
</ScrollView>
|
2019-08-08 18:25:13 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|