// @flow import * as React from 'react'; import {Image, Linking, View} from 'react-native'; import {Body, Card, CardItem, Container, Content, H2, H3, Left, Tab, TabHeading, Tabs, Text} from 'native-base'; import CustomHeader from "../../components/CustomHeader"; import i18n from "i18n-js"; import CustomMaterialIcon from "../../components/CustomMaterialIcon"; import ThemeManager from "../../utils/ThemeManager"; type Props = { navigation: Object, }; /** * Opens a link in the device's browser * @param link The link to open */ function openWebLink(link) { Linking.openURL(link).catch((err) => console.error('Error opening link', err)); } /** * 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() { const nav = this.props.navigation; 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')}
); } }