import {StyleSheet, ViewStyle} from 'react-native'; import {Theme, $Theme} from '../../style'; export interface TabsStyle { container: ViewStyle; topTabBarSplitLine: ViewStyle; bottomTabBarSplitLine: ViewStyle; } export default (theme: Theme) => StyleSheet.create({ container: { flex: 1, backgroundColor: theme.fill_base, }, topTabBarSplitLine: { backgroundColor: theme.fill_base, overflow: 'visible', marginBottom: 5, // borderBottomColor: theme.border_color_base, // borderBottomWidth: 1, }, bottomTabBarSplitLine: { backgroundColor: theme.fill_base, // borderTopColor: theme.border_color_base, // borderTopWidth: 1, }, });