// @flow import * as React from 'react'; import {Image, View} from 'react-native'; import i18n from 'i18n-js'; import {Card, Avatar, Paragraph, Title} from 'react-native-paper'; import CollapsibleScrollView from '../../components/Collapsible/CollapsibleScrollView'; import type {CardTitleIconPropsType} from '../../constants/PaperStyles'; import ProxiwashConstants from '../../constants/ProxiwashConstants'; const LOGO = 'https://etud.insa-toulouse.fr/~amicale_app/images/Proxiwash.png'; export type LaundromatType = { id: string, title: string, subtitle: string, description: string, tarif: string, paymentMethods: string, icon: string, url: string, }; /** * Class defining the proxiwash about screen. */ export default class ProxiwashAboutScreen extends React.Component { static getCardItem(item: LaundromatType): React.Node { return ( ( )} /> {i18n.t(item.description)} {i18n.t('screens.proxiwash.tariffs')} {i18n.t(item.tarif)} {i18n.t('screens.proxiwash.paymentMethods')} {i18n.t(item.paymentMethods)} ); } render(): React.Node { return ( {ProxiwashAboutScreen.getCardItem(ProxiwashConstants.washinsa)} {ProxiwashAboutScreen.getCardItem(ProxiwashConstants.tripodeB)} ( )} /> {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')} ); } }