Application Android et IOS pour l'amicale des élèves https://play.google.com/store/apps/details?id=fr.amicaleinsat.application
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.

TabBarIcon.js 432B

12345678910111213141516
  1. import React from 'react';
  2. import {Ionicons} from '@expo/vector-icons/build/Icons';
  3. export default class TabBarIcon extends React.Component {
  4. render() {
  5. return (
  6. <Ionicons
  7. name={this.props.name}
  8. size={26}
  9. style={{marginBottom: -3}}
  10. color={this.props.focused ? Colors.tabIconSelected : Colors.tabIconDefault}
  11. />
  12. );
  13. }
  14. }