import { ImageStyle, StyleSheet, TextStyle, ViewStyle } from "react-native"; import { ExtendedTheme } from "@react-navigation/native"; import { ScreenWidth } from "@freakycoder/react-native-helpers"; interface Style { container: ViewStyle; titleTextStyle: TextStyle; buttonStyle: ViewStyle; buttonTextStyle: TextStyle; header: ViewStyle; contentContainer: ViewStyle; listContainer: ViewStyle; profilePicImageStyle: ImageStyle; } export default (theme: ExtendedTheme) => { const { colors } = theme; return StyleSheet.create