Header.js 917 B

123456789101112131415161718192021222324252627282930
  1. import { StyleSheet, Text, View, TouchableOpacity } from 'react-native'
  2. import React from 'react'
  3. import fonts from '../../theme/fonts'
  4. import colors from '../../theme/colors'
  5. import FeatherIcon from 'react-native-vector-icons/dist/Feather'
  6. const Header = ({ style, children, backButtonShown, onBackClick }) => {
  7. return (
  8. <View style={[styles.headerContainer, style]}>
  9. {backButtonShown === true && backButtonShown !== undefined ? <TouchableOpacity onPress={onBackClick}>
  10. <FeatherIcon name={'chevron-left'} size={24} color={colors.black} />
  11. </TouchableOpacity> : <></>}
  12. {children}
  13. </View>
  14. )
  15. }
  16. export default Header
  17. const styles = StyleSheet.create({
  18. headerContainer: {
  19. paddingHorizontal: fonts.getSize(20),
  20. flexDirection: 'row',
  21. alignItems: 'center',
  22. justifyContent: 'space-between',
  23. height: 60,
  24. maxHeight: 60,
  25. backgroundColor: colors.white
  26. }
  27. })