// @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'; import CustomTabBar from "../../components/Tabbar/CustomTabBar"; type Props = {}; const LOGO = "https://etud.insa-toulouse.fr/~amicale_app/images/Proxiwash.png"; /** * Class defining the proxiwash about screen. */ export default class ProxiwashAboutScreen extends React.Component { render() { return ( {i18n.t('screens.proxiwash.description')} } /> {i18n.t('screens.proxiwash.procedure')} {i18n.t('screens.proxiwash.dryerProcedure')} {i18n.t('screens.proxiwash.tips')} {i18n.t('screens.proxiwash.dryerTips')} } /> {i18n.t('screens.proxiwash.procedure')} {i18n.t('screens.proxiwash.washerProcedure')} {i18n.t('screens.proxiwash.tips')} {i18n.t('screens.proxiwash.washerTips')} } /> {i18n.t('screens.proxiwash.washersTariff')} {i18n.t('screens.proxiwash.dryersTariff')} } /> {i18n.t('screens.proxiwash.paymentMethodsDescription')} ); } }