// @flow import * as React from 'react'; import {Image, View} from 'react-native'; import i18n from 'i18n-js'; import {Card, Avatar, Paragraph, Text} from 'react-native-paper'; import CustomTabBar from '../../../components/Tabbar/CustomTabBar'; import CollapsibleScrollView from '../../../components/Collapsible/CollapsibleScrollView'; import type {CardTitleIconPropsType} from '../../../constants/PaperStyles'; const LOGO = 'https://etud.insa-toulouse.fr/~amicale_app/images/Proximo.png'; /** * Class defining the proximo about screen. */ // eslint-disable-next-line react/prefer-stateless-function export default class ProximoAboutScreen extends React.Component { render(): React.Node { return ( {i18n.t('screens.proximo.description')} ( )} /> 18h30 - 19h30 ( )} /> {i18n.t('screens.proximo.paymentMethodsDescription')} ); } }