UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

14 lines (11 loc) 284 B
import { StyleSheet } from "react-native"; import { COLORS } from "@/constants/Colors"; import { theme } from "@/utils/getTheme"; const styles = StyleSheet.create({ line: { backgroundColor: COLORS[theme].grey, height: 1, width: "100%", }, }); export default styles;