在 React Native 中使用
在 React Native 中使用 Fower 与在 React 中使用 Fower 非常相似。
#
安装- npm
- Yarn
npm install @fower/react-native
yarn add @fower/react-native
#
用法下面,我们使用组件,实现一个用户信息卡片界面:
import React from 'react'import { View, Text, Image } from '@fower/react-native'
const ProfileCard = () => ( <View toCenterY p-10 w-260 bgWhite rounded-10 shadow> <Image circle-48 source={{ uri: '/img/jobs.jpg' }} /> <View ml-10> <View textXL fontBold> Steve Jobs </View> <Text gray800>Co-founder of Apple Inc.</Text> </View> </View>)