import React ,{Component} from 'react';
import {AppRegistry, StyleSheet, Text, View} from 'react-native';
export default class LotsOfStyles extends Component {
render(){
return(
<View style={styles.container}>
<Text style={styles.red}>just red</Text>
<Text style={styles.bigblue}>just bigblue</Text>
/*陣列賦值屬性,使用最後一個值*/
<Text style={[styles.bigblue,styles.red]}>bigblue,thne red</Text>
<Text style={[styles.red,styles.bigblue]}>red , then bigblue</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
bigblue:{
color: 'blue',
fontWeight:'bold',
fontSize:30,
} ,
red:{
color:'red',
},
});
複製程式碼
React Native 樣式(1)
相關文章
- React-Native 樣式指南React
- React Native 樣式總結React Native
- react-native佈局和樣式設定React
- 來聊聊怎麼寫react-native上的樣式吧React
- react-native 環境搭建(1/4)React
- [React Native]react-native-scrollabReact Native
- react 樣式隔離方案React
- 常用CSS樣式1:文字樣式CSS
- React Native 使用 react-native-webview 渲染 HTMLReact NativeWebViewHTML
- React Native Icon方案:react-native-svgReact NativeSVG
- React Native轉web方案:react-native-webReact NativeWeb
- iOS React Native 混合開發整合React NativeiOSReact Native
- react-native配置react-native-image-crop-pickerReact
- 1.5 常用CSS樣式1:文字樣式CSS
- React Native 上手React Native
- react-nativeReact
- react native FlatListReact Native
- Hello React NativeReact Native
- React Native / React除錯技巧React Native除錯
- 《React Native高效開發》之create-react-native-appReact NativeAPP
- React-Native入門(1)-專案工程初識React
- React Native JSON解析和輔助函式(2)React NativeJSON函式
- React Native選擇器元件-react-native-slidepickerReact Native元件IDE
- react native 包學不包會系列--認識react nativeReact Native
- react-native呼叫native步驟React
- React 元件庫 CSS 樣式方案分析React元件CSS
- React修改Antd元件樣式的方法React元件
- react/react-native效能優化React優化
- 詳解 React NativeReact Native
- React Native 熱更新React Native
- Redux for react native 指南ReduxReact Native
- react native fetchReact Native
- React Native List列表React Native
- react native快速上手React Native
- react-native打包React
- React Native雜談React Native
- [譯] Airbnb 在 React Native 上下的賭注(四):React Native 退役AIReact Native
- [React Native] Animate the Scale of a React Native Button using Animated.springReact NativeSpring