index.tsx 832 B

1234567891011121314151617181920212223242526272829
  1. import { FC } from 'react';
  2. import { ImageBackground, View, Text, ScrollView } from 'react-native';
  3. import type { NavigationProp } from '@react-navigation/native';
  4. import { Header, PageWrapper } from '../../../components';
  5. import { styles } from './styles';
  6. type Props = {
  7. navigation: NavigationProp<any>;
  8. };
  9. export const CountriesInfoScreen: FC<Props> = ({ navigation }) => {
  10. return (
  11. <PageWrapper>
  12. <Header label={'Countries'} />
  13. <ImageBackground
  14. style={styles.background}
  15. source={require('../../../../assets/images/nm-background.png')}
  16. >
  17. <ScrollView
  18. style={styles.wrapper}
  19. showsVerticalScrollIndicator={false}
  20. contentContainerStyle={styles.contentContainerStyle}
  21. >
  22. </ScrollView>
  23. </ImageBackground>
  24. </PageWrapper>
  25. );
  26. };