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.

17 lines (14 loc) 368 B
import { StyleSheet } from "react-native"; import { moderateScale } from "@/constants/Metrics"; const styles = StyleSheet.create({ container: { borderRadius: moderateScale(12), height: moderateScale(8), width: "100%", }, progress: { borderRadius: moderateScale(12), height: moderateScale(8), }, }); export default styles;