// @flow import * as React from 'react'; import {Image, View} from 'react-native'; import i18n from "i18n-js"; import {Card, List, Paragraph, Text} from 'react-native-paper'; import CustomTabBar from "../../../components/Tabbar/CustomTabBar"; import {StackNavigationProp} from "@react-navigation/stack"; import CollapsibleScrollView from "../../../components/Collapsible/CollapsibleScrollView"; type Props = { navigation: StackNavigationProp, }; const LOGO = "https://etud.insa-toulouse.fr/~amicale_app/images/Proximo.png"; /** * Class defining the proximo about screen. */ export default class ProximoAboutScreen extends React.Component { render() { return ( {i18n.t('screens.proximo.description')} } /> 18h30 - 19h30 } /> {i18n.t('screens.proximo.paymentMethodsDescription')} ); } }