// @flow import * as React from 'react'; import {Image, View} from 'react-native'; import {Body, Card, CardItem, Content, H2, H3, Left, Tab, TabHeading, Tabs, Text} from 'native-base'; import i18n from "i18n-js"; import {MaterialCommunityIcons} from "@expo/vector-icons"; import ThemeManager from "../../utils/ThemeManager"; type Props = { navigation: Object, }; /** * Class defining an about screen. This screen shows the user information about the app and it's author. */ export default class ProxiwashAboutScreen extends React.Component { render() { return ( {i18n.t('proxiwashScreen.informationTab')} } key={1} style={{backgroundColor: ThemeManager.getCurrentThemeVariables().containerBgColor}}> {i18n.t('proxiwashScreen.description')}

{i18n.t('proxiwashScreen.dryer')}

{i18n.t('proxiwashScreen.procedure')}

{i18n.t('proxiwashScreen.dryerProcedure')}

{i18n.t('proxiwashScreen.tips')}

{i18n.t('proxiwashScreen.dryerTips')}

{i18n.t('proxiwashScreen.washer')}

{i18n.t('proxiwashScreen.procedure')}

{i18n.t('proxiwashScreen.washerProcedure')}

{i18n.t('proxiwashScreen.tips')}

{i18n.t('proxiwashScreen.washerTips')}
{i18n.t('proxiwashScreen.paymentTab')} } key={2} style={{backgroundColor: ThemeManager.getCurrentThemeVariables().containerBgColor}}>

{i18n.t('proxiwashScreen.tariffs')}

{i18n.t('proxiwashScreen.washersTariff')} {i18n.t('proxiwashScreen.dryersTariff')}

{i18n.t('proxiwashScreen.paymentMethods')}

{i18n.t('proxiwashScreen.paymentMethodsDescription')}
); } }