この文書の現在のバージョンと選択したバージョンの差分を表示します。
両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
reactnative:style [2019/02/10 15:47] ips [flex] |
reactnative:style [2019/03/30 14:35] (現在) ips |
||
---|---|---|---|
ライン 14: | ライン 14: | ||
[[https://casesandberg.github.io/react-color/|React Color]] | [[https://casesandberg.github.io/react-color/|React Color]] | ||
+ | ====== widthやhight ====== | ||
+ | 数字でも%でも指定できる。%の場合は''が必要。 | ||
+ | <code> | ||
+ | style={{flex:1,width:'100%',maxHeight:200,top:50}} | ||
+ | </code> | ||
===== flex ===== | ===== flex ===== | ||
ライン 327: | ライン 332: | ||
<View style={{flex:1, alignItems :'center', backgroundColor: 'red'}}> //alignItems :'center' | <View style={{flex:1, alignItems :'center', backgroundColor: 'red'}}> //alignItems :'center' | ||
- | <View style={{height: 50, backgroundColor: 'powderblue'}} > | + | <View style={{alignSelf:'flex-start',height: 50, backgroundColor: 'powderblue'}} > |
<Text>1.powderblue</Text> | <Text>1.powderblue</Text> | ||
</View> | </View> | ||
- | <View style={{height: 50, backgroundColor: 'skyblue'}} > | + | <View style={{alignSelf:'center',height: 50, backgroundColor: 'skyblue'}} > |
<Text>2.skyblue</Text> | <Text>2.skyblue</Text> | ||
</View> | </View> | ||
- | <View style={{height: 50, backgroundColor: 'steelblue'}} > | + | <View style={{alignSelf:'flex-end',height: 50, backgroundColor: 'steelblue'}} > |
<Text>3.steelblue</Text> | <Text>3.steelblue</Text> | ||
</View> | </View> |