// @flow import * as React from 'react'; import {Image, Linking, View} from 'react-native'; import {Body, Card, CardItem, Container, Content, H1, 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 ( Information } key={1} style={{backgroundColor: ThemeManager.getCurrentThemeVariables().containerBgColor}}> Ta laverie directement sur le campus, au pied du R3.

Seche linge

Coucou

Machine a laver

Coucou
Payment } key={2} style={{backgroundColor: ThemeManager.getCurrentThemeVariables().containerBgColor}}>

Tarifs

Coucou

Moyens de Paiement

Coucou
); } }