블로그에 기술 게시물을 쓴 지 꽤 오랜 시간이 흘렀습니다. @shopify/restyle 및 expo를 사용하여 React Native에서 유형 적용 UI 구성 요소를 구축하는 방법에 대한 새로운 게시물이 있습니다.
@shopify/restyle은 UI 구성 요소에 유형 안전성과 일관성을 제공하는 강력한 React Native용 스타일 라이브러리입니다. 기존 스타일링 접근 방식과 달리 Restyle을 사용하면 전체 애플리케이션에 걸쳐 디자인 시스템 원칙을 적용하는 중앙 집중식 테마 구성을 만들 수 있습니다.
npx create-expo-app@latest
cd /path/to/project npx expo install @shopify/restyle
theme.tsx 파일을 만들어 디자인 시스템을 정의하세요.
touch theme.tsx
import {createTheme} from '@shopify/restyle'; const palette = { purpleLight: '#8C6FF7', purplePrimary: '#5A31F4', purpleDark: '#3F22AB', greenLight: '#56DCBA', greenPrimary: '#0ECD9D', greenDark: '#0A906E', black: '#0B0B0B', white: '#F0F2F3', }; const theme = createTheme({ colors: { mainBackground: palette.white, cardPrimaryBackground: palette.purplePrimary, }, spacing: { s: 8, m: 16, l: 24, xl: 40, }, textVariants: { header: { fontWeight: 'bold', fontSize: 34, }, body: { fontSize: 16, lineHeight: 24, }, defaults: { // We can define a default text variant here. }, }, }); export type Theme = typeof theme; export default theme;
app/_layout.tsx 업데이트:
import { DarkTheme, DefaultTheme } from "@react-navigation/native"; import { useFonts } from "expo-font"; import { Stack } from "expo-router"; import * as SplashScreen from "expo-splash-screen"; import { StatusBar } from "expo-status-bar"; import { useEffect } from "react"; import "react-native-reanimated"; import { ThemeProvider } from "@shopify/restyle"; import theme from "@/theme"; // Prevent the splash screen from auto-hiding before asset loading is complete. SplashScreen.preventAutoHideAsync(); export default function RootLayout() { const [loaded] = useFonts({ SpaceMono: require("../assets/fonts/SpaceMono-Regular.ttf"), }); useEffect(() => { if (loaded) { SplashScreen.hideAsync(); } }, [loaded]); if (!loaded) { return null; } return ( <ThemeProvider theme={theme}> <Stack> <Stack.Screen name="(tabs)" options={{ headerShown: false }} /> <Stack.Screen name="+not-found" /> </Stack> <StatusBar> <h2> Creating Reusable Components </h2> <h3> Text Component </h3> <pre class="brush:php;toolbar:false">touch components/Text.tsx
// In components/Text.tsx import {createText} from '@shopify/restyle'; import {Theme} from '../theme'; export const Text = createText<Theme>();
홈 화면에서 사용해보자
import { Text } from "@/components/Text"; import { SafeAreaView } from "react-native-safe-area-context"; export default function HomeScreen() { return ( <SafeAreaView> <Text margin="m" variant="header"> This is the Home screen. Built using @shopify/restyle. </Text> </SafeAreaView> ); }
위 코드에서 볼 수 있듯이 마진을 숫자 대신 "m"으로 전달하고 있습니다. theme.tsxfile에서 값을 가져옵니다.
// ./theme.tsx const theme = createTheme({ spacing: { s: 8, m: 16, // margin="m" l: 24, xl: 40, }, textVariants: { header: { // our text header variant fontWeight: 'bold', fontSize: 34, }, body: { fontSize: 16, lineHeight: 24, }, }, // ...rest of code }, });
홈페이지 보기는 다음과 같습니다
스켈레톤 로더 카드를 만들어 봅시다
touch components/SkeletonLoader.tsx
// components/SkeletonLoader.tsx import { BackgroundColorProps, createBox, createRestyleComponent, createVariant, spacing, SpacingProps, VariantProps, } from "@shopify/restyle"; import { Theme } from "@/theme"; import { View } from "react-native"; const Box = createBox<Theme>(); type Props = SpacingProps<Theme> & VariantProps<Theme, "cardVariants"> & BackgroundColorProps<Theme> & React.ComponentProps<typeof View>; const CardSkeleton = createRestyleComponent<Props, Theme>([ spacing, createVariant({ themeKey: "cardVariants" }), ]); const SkeletonLoader = () => { return ( <CardSkeleton variant="elevated"> <Box backgroundColor="cardPrimaryBackground" height={20} marginBottom="s" width="70%" overflow="hidden" borderRadius={"m"} > </Box> <Box backgroundColor="cardPrimaryBackground" height={100} marginBottom="s" width="90%" overflow="hidden" borderRadius={"m"} > </Box> <Box backgroundColor="cardPrimaryBackground" height={50} marginBottom="s" width="70%" overflow="hidden" borderRadius={"m"} > </Box> </CardSkeleton> ); }; export default SkeletonLoader;
const Box = createBox<Theme>();
type Props = SpacingProps<Theme> & VariantProps<Theme, "cardVariants"> & BackgroundColorProps<Theme> & React.ComponentProps<typeof View>; const CardSkeleton = createRestyleComponent<Props, Theme>([ spacing, createVariant({ themeKey: "cardVariants" }), ]);
// components/SkeletonLoader.tsx export const SkeletonLoader = () => { return ( <CardSkeleton variant="elevated"> <Box backgroundColor="cardPrimaryBackground" height={20} marginBottom="s" width="70%" overflow="hidden" borderRadius={"m"} ></Box> <Box backgroundColor="cardPrimaryBackground" height={100} marginBottom="s" width="90%" overflow="hidden" borderRadius={"m"} ></Box> <Box backgroundColor="cardPrimaryBackground" height={50} marginBottom="s" width="70%" overflow="hidden" borderRadius={"m"} ></Box> </CardSkeleton> ); };
이 기능을 작동시키려면 theme.tsxfile을 업데이트하여 카드 변형을 갖도록 해야 합니다.
const theme = createTheme({ colors: { // Add Black Color to use it later on black: palette.black, }, // Add Border Radius Variants borderRadii: { s: 4, m: 10, l: 25, xl: 75, }, // Add Card Variants cardVariants: { elevated: { shadowColor: "black", shadowOffset: { width: 0, height: 2 }, shadowOpacity: 0.1, shadowRadius: 4, elevation: 3, borderRadius: "m", }, defaults: { padding: "m", borderRadius: "m", }, }, });
좋습니다. 하지만 구성요소에 애니메이션을 적용해 보겠습니다
// components/SkeletonLoader.tsx const ShimmerAnimation = () => { const shimmerTranslate = useRef(new Animated.Value(0)).current; useEffect(() => { Animated.loop( Animated.timing(shimmerTranslate, { toValue: 1, duration: 1500, useNativeDriver: true, }) ).start(); }, [shimmerTranslate]); const translateX = shimmerTranslate.interpolate({ inputRange: [0, 1], outputRange: [-300, 300], }); return ( <Animated.View > <p>and let’s use it in our Skeleton Loader Component<br> </p> <pre class="brush:php;toolbar:false">// components/SkeletonLoader.tsx export const SkeletonLoader = () => { return ( <CardSkeleton variant="elevated"> <Box backgroundColor="cardPrimaryBackground" height={20} marginBottom="s" width="70%" overflow="hidden" borderRadius={"m"} > <ShimmerAnimation /> </Box> <Box backgroundColor="cardPrimaryBackground" height={100} marginBottom="s" width="90%" overflow="hidden" borderRadius={"m"} > <ShimmerAnimation /> </Box> <Box backgroundColor="cardPrimaryBackground" height={50} marginBottom="s" width="70%" overflow="hidden" borderRadius={"m"} > <ShimmerAnimation /> </Box> </CardSkeleton> ); };
전체 구성 요소 코드는 다음과 같습니다.
// components/SkeletonLoader.tsx import { useEffect, useRef } from "react"; import { Animated } from "react-native"; import { BackgroundColorProps, createBox, createRestyleComponent, createVariant, spacing, SpacingProps, VariantProps, } from "@shopify/restyle"; import { Theme } from "@/theme"; import { View } from "react-native"; const Box = createBox<Theme>(); const ShimmerAnimation = () => { const shimmerTranslate = useRef(new Animated.Value(0)).current; useEffect(() => { Animated.loop( Animated.timing(shimmerTranslate, { toValue: 1, duration: 1500, useNativeDriver: true, }) ).start(); }, [shimmerTranslate]); const translateX = shimmerTranslate.interpolate({ inputRange: [0, 1], outputRange: [-300, 300], }); return (Et voila, we made a skeleton loader card using @shopify/restyle using
Support for dark mode
Let’s start with adding dark theme configuration, in your theme.tsxfile
// theme.tsx export const darkTheme: Theme = { ...theme, colors: { ...theme.colors, mainBackground: palette.white, cardPrimaryBackground: palette.purpleDark, greenPrimary: palette.purpleLight, }, textVariants: { ...theme.textVariants, defaults: { ...theme.textVariants.header, color: palette.purpleDark, }, },layout.tsx 파일에 어두운 테마 구성을 추가하여 앱 레이아웃에 추가하세요
npx create-expo-app@latest
- 색상 스키마에 따라 기본 밝은 테마를 사용하거나 어두운 모드에서는 theme.tsx 파일에 정의된 darkTheme 구성을 사용합니다.
//app/_layout.tsx "@/theme"에서 테마 가져오기, { darkTheme }; //... 나머지 코드 <ThemeProvider theme={colorSchema === "어두운" ? darkTheme : 테마}> <스택> <Stack.Screen name="(tabs)" options={{ headerShown: false }} /> <Stack.Screen name=" 찾을 수 없음" /> </스택> <상태 표시줄> <p>어두운 모드와 밝은 모드가 있습니다.</p> <p><img src="https://img.php.cn/upload/article/000/000/000/173310152340178.jpg" alt="How to build type-enforced UI components in React Native using @shopify/restyle"></p> <p><img src="https://img.php.cn/upload/article/000/000/000/173310152557660.jpg" alt="How to build type-enforced UI components in React Native using @shopify/restyle"></p> <p>자, 짜잔, @shopify/restyle 패키지를 사용하여 유형 적용 UI 구성 요소를 만들었습니다</p> <p>감사합니다 :)</p>위 내용은 @shopify/restyle을 사용하여 React Native에서 유형 적용 UI 구성 요소를 구축하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!