Skip to content

Instantly share code, notes, and snippets.

@burakorkmez
burakorkmez / auth.styles.ts
Created March 6, 2025 15:56
React Native Spotlight - Styles
// styles/auth.styles.ts
import { COLORS } from "@/constants/theme";
import { StyleSheet, Dimensions } from "react-native";
const { width, height } = Dimensions.get("window");
export const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: COLORS.background,