import { StyleSheet, type TextStyle, type ViewStyle } from "react-native"; import type { ExtendedTheme } from "@react-navigation/native"; import { ScreenWidth } from "@freakycoder/react-native-helpers"; interface Style { container: ViewStyle; descriptionTextStyle: TextStyle; contentContainer: ViewStyle; languageContainer: ViewStyle; languageColorStyle: ViewStyle; starContainer: ViewStyle; valueTextStyle: TextStyle; forkContainer: ViewStyle; } export default (theme: ExtendedTheme) => { const { colors } = theme; return StyleSheet.create