// @flow import * as React from 'react'; import {Button, Container, H3, Text} from 'native-base'; import CustomHeader from "../components/CustomHeader"; import i18n from "i18n-js"; import {Platform, View} from "react-native"; import CustomMaterialIcon from "../components/CustomMaterialIcon"; import ThemeManager from "../utils/ThemeManager"; import {Linking} from "expo"; 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 the app's planning screen */ export default class PlanningScreen extends React.Component { render() { const nav = this.props.navigation; return (

{i18n.t('planningScreen.wipTitle')}

{i18n.t('planningScreen.wipSubtitle')} {Platform.OS === 'android' ? : }
); } }