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.
27 lines (25 loc) • 613 B
text/typescript
import { COLORS } from "@/constants/Colors";
import { StyleSheet } from "react-native";
export default StyleSheet.create({
headerStyle: {
alignItems: "center",
flexDirection: "row",
justifyContent: "space-between",
paddingHorizontal: 15,
borderBottomWidth: 1,
borderBottomColor: COLORS.light.border,
// paddingTop: getStatusBarHeight(),
},
NotiNum: {
position: "absolute",
top: -5,
},
displayNone: {
display: "none",
},
hiddenStyle: { opacity: 0, position: "relative" },
spacing: {
marginStart: -15,
padding: 15,
},
});