import React from 'react'; import { ScrollView, View, StyleSheet } from 'react-native'; import { HeaderBackButton } from 'react-navigation-stack'; import HeaderComponent from '../../app/views/RoomView/Header/Header'; // import { CustomHeaderButtons, Item } from '../../app/containers/HeaderButton'; import StoriesSeparator from './StoriesSeparator'; import { isIOS } from '../../app/utils/deviceInfo'; import { themes } from '../../app/constants/colors'; let _theme = 'light'; const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'row', height: isIOS ? 44 : 56, borderTopWidth: 1, borderBottomWidth: 1, marginVertical: 6 } }); const Header = props => ( {/* not working because we use withTheme */} {/* */} ); // eslint-disable-next-line react/prop-types export default ({ theme }) => { _theme = theme; return (
); };