// @flow import * as React from 'react'; import {Image, ScrollView, View} from 'react-native'; import i18n from "i18n-js"; import {Card, List, Paragraph, Text, Title} from 'react-native-paper'; type Props = { navigation: Object, }; /** * Class defining the proxiwash about screen. */ export default class ProxiwashAboutScreen extends React.Component { render() { return ( {i18n.t('proxiwashScreen.description')} } /> {i18n.t('proxiwashScreen.procedure')} {i18n.t('proxiwashScreen.dryerProcedure')} {i18n.t('proxiwashScreen.tips')} {i18n.t('proxiwashScreen.dryerTips')} } /> {i18n.t('proxiwashScreen.procedure')} {i18n.t('proxiwashScreen.washerProcedure')} {i18n.t('proxiwashScreen.tips')} {i18n.t('proxiwashScreen.washerTips')} } /> {i18n.t('proxiwashScreen.washersTariff')} {i18n.t('proxiwashScreen.dryersTariff')} } /> {i18n.t('proxiwashScreen.paymentMethodsDescription')} ); } }