Application Android et IOS pour l'amicale des élèves
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HomeScreen.js 861B

12345678910111213141516171819202122232425262728
  1. import React from 'react';
  2. import {Container, Content, Text, Button, Icon} from 'native-base';
  3. import CustomHeader from '../components/CustomHeader';
  4. import i18n from "i18n-js";
  5. import { Notifications } from 'expo';
  6. export default class HomeScreen extends React.Component {
  7. render() {
  8. const nav = this.props.navigation;
  9. return (
  10. <Container>
  11. <CustomHeader navigation={nav} title={i18n.t('screens.home')}/>
  12. <Content padder>
  13. <Button>
  14. <Icon
  15. active
  16. name={'bell-ring'}
  17. type={'MaterialCommunityIcons'}
  18. />
  19. <Text>Notif</Text>
  20. </Button>
  21. </Content>
  22. </Container>
  23. );
  24. }
  25. }