本指南將引導您使用樣式元件和 TypeScript 設定 Expo 項目。該專案支援主題系統、深色模式和類型安全的 UI 元件,使其成為現代 React Native 應用程式的堅實基礎。
代碼
執行以下指令來初始化一個新的 Expo 專案:
npx create-expo-app styled-setup --template # Choose template: ➟ Blank (TypeScript)
安裝樣式元件所需的依賴項:
# Install styled-components npm install styled-components # Install type definitions for styled-components npm install @types/styled-components-react-native --save-dev
按照以下結構組織您的專案:
├── app/ # Expo Router app directory │ ├── (tabs)/ # Tab navigation │ │ ├── index.tsx # First tab screen │ │ ├── two.tsx # Second tab screen │ │ └── _layout.tsx # Tab layout configuration │ ├── _layout.tsx # Root layout │ ├── modal.tsx # Modal screen │ └── +not-found.tsx # 404 screen ├── components/ │ ├── ui/ # UI components │ │ ├── button/ │ │ ├── container/ │ │ ├── text/ │ │ └── layout/ │ └── ExternalLink.tsx ├── themes/ # Theme configuration │ ├── colors.ts # Color definitions │ ├── sizes.ts # Size scales │ ├── spacing.ts # Spacing system │ ├── styles.ts # Common styles │ ├── theme.d.ts # Theme type definitions │ └── index.ts # Theme export └── hooks/ # Custom hooks └── useColors.ts # Theme colors hook
按鈕元件是一個靈活的樣式按鈕,支援變體、大小和載入狀態。
import Button from "@/components/ui/button"; // Usage <Button variant="primary" size="lg" shape="rounded" loading={false}> Click Me </Button>;
道具:
Flex 和 FlexItem 元件提供了受 CSS flexbox 啟發的靈活佈局系統。
import { Flex, FlexItem } from "@/components/ui/layout"; // Usage <Flex direction="row" justify="space-between" align="center" gap="md"> <FlexItem grow={1}> <Text>Content</Text> </FlexItem> </Flex>;
道具:
在themes/colors.ts定義一致的調色盤:
const colors = { primary: "#3b82f6", secondary: "#22c55e", success: "#16a34a", error: "#dc2626", warning: "#f59e0b", info: "#0ea5e9", // Additional colors... };
標準化主題/spacing.ts中的間距:
const spacing = { padding: { xs: 4, sm: 8, md: 16, lg: 24, xl: 32, }, // Margin and gap definitions... };
在 theme/styles.ts 定義字體大小:
const fontSizes = { xs: 8, sm: 12, base: 14, md: 16, lg: 20, xl: 24, // Additional sizes... };
應用程式動態適應系統深色模式偏好:
npx create-expo-app styled-setup --template # Choose template: ➟ Blank (TypeScript)
使用themes/theme.d.ts確保主題類型安全:
# Install styled-components npm install styled-components # Install type definitions for styled-components npm install @types/styled-components-react-native --save-dev
定義 Button 組件的 props:
├── app/ # Expo Router app directory │ ├── (tabs)/ # Tab navigation │ │ ├── index.tsx # First tab screen │ │ ├── two.tsx # Second tab screen │ │ └── _layout.tsx # Tab layout configuration │ ├── _layout.tsx # Root layout │ ├── modal.tsx # Modal screen │ └── +not-found.tsx # 404 screen ├── components/ │ ├── ui/ # UI components │ │ ├── button/ │ │ ├── container/ │ │ ├── text/ │ │ └── layout/ │ └── ExternalLink.tsx ├── themes/ # Theme configuration │ ├── colors.ts # Color definitions │ ├── sizes.ts # Size scales │ ├── spacing.ts # Spacing system │ ├── styles.ts # Common styles │ ├── theme.d.ts # Theme type definitions │ └── index.ts # Theme export └── hooks/ # Custom hooks └── useColors.ts # Theme colors hook
本指南提供了將樣式元件與 Expo 和 TypeScript 結合使用的全面設定。憑藉強大的主題系統、暗模式支援和類型安全組件,該基礎確保了可擴展和可維護的程式碼庫。自訂並擴展此設定以滿足您專案的獨特要求。
有疑問或回饋嗎?發表評論或聯絡我們! ?
以上是使用樣式元件和 TypeScript 設定 Expo的詳細內容。更多資訊請關注PHP中文網其他相關文章!