Android => RN 部分字段对应
2018-04-26 本文已影响0人
比尔王BillWang
从安卓转到RN,发现有些字段的效果类似,但是名字不同,所以记录下。
View
Android | RN |
---|---|
onClick | onPress |
layout_height | height |
layout_width | width |
layout_marginTop | marginTop |
background="@color" | backgroundColor |
TextView | Text |
---|---|
textColor | color |
textStyle | fontWeight |
gravity | textAlign |
textSize | fontSize |
EditText | TextInput |
---|---|
text | value |
hint | placeholder |
inputType | keyboardType |
onTextChangeListener | onChangeText |
ImageView | Image |
---|---|
src | source |
scroleType | resizeMode |