Update Proxiwash About Screen
This commit is contained in:
parent
115c90b712
commit
5a92b5096a
1 changed files with 2 additions and 30 deletions
|
@ -3,8 +3,7 @@
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import {Image, View} from 'react-native';
|
import {Image, View} from 'react-native';
|
||||||
import i18n from 'i18n-js';
|
import i18n from 'i18n-js';
|
||||||
import {Card, Avatar, Paragraph, Text, Title} from 'react-native-paper';
|
import {Card, Avatar, Paragraph, Title} from 'react-native-paper';
|
||||||
import CustomTabBar from '../../components/Tabbar/CustomTabBar';
|
|
||||||
import CollapsibleScrollView from '../../components/Collapsible/CollapsibleScrollView';
|
import CollapsibleScrollView from '../../components/Collapsible/CollapsibleScrollView';
|
||||||
import type {CardTitleIconPropsType} from '../../constants/PaperStyles';
|
import type {CardTitleIconPropsType} from '../../constants/PaperStyles';
|
||||||
|
|
||||||
|
@ -32,7 +31,7 @@ export default class ProxiwashAboutScreen extends React.Component<null> {
|
||||||
style={{height: '100%', width: '100%', resizeMode: 'contain'}}
|
style={{height: '100%', width: '100%', resizeMode: 'contain'}}
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
<Text>{i18n.t('screens.proxiwash.description')}</Text>
|
|
||||||
<Card style={{margin: 5}}>
|
<Card style={{margin: 5}}>
|
||||||
<Card.Title
|
<Card.Title
|
||||||
title={i18n.t('screens.proxiwash.dryer')}
|
title={i18n.t('screens.proxiwash.dryer')}
|
||||||
|
@ -62,33 +61,6 @@ export default class ProxiwashAboutScreen extends React.Component<null> {
|
||||||
<Paragraph>{i18n.t('screens.proxiwash.washerTips')}</Paragraph>
|
<Paragraph>{i18n.t('screens.proxiwash.washerTips')}</Paragraph>
|
||||||
</Card.Content>
|
</Card.Content>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
<Card style={{margin: 5}}>
|
|
||||||
<Card.Title
|
|
||||||
title={i18n.t('screens.proxiwash.tariffs')}
|
|
||||||
left={(iconProps: CardTitleIconPropsType): React.Node => (
|
|
||||||
<Avatar.Icon size={iconProps.size} icon="circle-multiple" />
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
<Card.Content>
|
|
||||||
<Paragraph>{i18n.t('screens.proxiwash.washersTariff')}</Paragraph>
|
|
||||||
<Paragraph>{i18n.t('screens.proxiwash.dryersTariff')}</Paragraph>
|
|
||||||
</Card.Content>
|
|
||||||
</Card>
|
|
||||||
<Card
|
|
||||||
style={{margin: 5, marginBottom: CustomTabBar.TAB_BAR_HEIGHT + 20}}>
|
|
||||||
<Card.Title
|
|
||||||
title={i18n.t('screens.proxiwash.paymentMethods')}
|
|
||||||
left={(iconProps: CardTitleIconPropsType): React.Node => (
|
|
||||||
<Avatar.Icon size={iconProps.size} icon="cash" />
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
<Card.Content>
|
|
||||||
<Paragraph>
|
|
||||||
{i18n.t('screens.proxiwash.paymentMethodsDescription')}
|
|
||||||
</Paragraph>
|
|
||||||
</Card.Content>
|
|
||||||
</Card>
|
|
||||||
</CollapsibleScrollView>
|
</CollapsibleScrollView>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue