// @flow import * as React from 'react'; import {Image, 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'; import CollapsibleScrollView from '../../components/Collapsible/CollapsibleScrollView'; const LOGO = 'https://etud.insa-toulouse.fr/~amicale_app/images/Proxiwash.png'; /** * Class defining the proxiwash about screen. */ // eslint-disable-next-line react/prefer-stateless-function export default class ProxiwashAboutScreen extends React.Component { render(): React.Node { 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')} ); } }