1234567891011121314151617181920212223242526272829 |
- import { FC } from 'react';
- import { ImageBackground, View, Text, ScrollView } from 'react-native';
- import type { NavigationProp } from '@react-navigation/native';
- import { Header, PageWrapper } from '../../../components';
- import { styles } from './styles';
- type Props = {
- navigation: NavigationProp<any>;
- };
- export const CountriesInfoScreen: FC<Props> = ({ navigation }) => {
- return (
- <PageWrapper>
- <Header label={'Countries'} />
- <ImageBackground
- style={styles.background}
- source={require('../../../../assets/images/nm-background.png')}
- >
- <ScrollView
- style={styles.wrapper}
- showsVerticalScrollIndicator={false}
- contentContainerStyle={styles.contentContainerStyle}
- >
- </ScrollView>
- </ImageBackground>
- </PageWrapper>
- );
- };
|