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.
22 lines (19 loc) • 456 B
text/typescript
import { COLORS } from "@/constants/Colors";
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
container: {
backgroundColor: COLORS.light.white,
shadowColor: COLORS.light.black,
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 3.84,
elevation: 5,
padding: 16,
borderRadius: 16,
width: "100%",
},
});
export default styles;