一畦幢、什么是Text組件屈芜?
一個(gè)用于顯示文本的React組件签钩,和Android中的TextView組件或者OC中的Label組件相類似硬霍,專門(mén)用來(lái)顯示基本的文本信息帜慢;除了基本的顯示布局之外,可以進(jìn)行嵌套顯示唯卖,設(shè)置樣式粱玲,以及可以做事件(例如:點(diǎn)擊)處理;
二拜轨、Text組件屬性
- color (string):字體顏色抽减;
- fontSize (number):字體大小;
- fontFamily (string):字體名稱;
-
fontStyle (enum):字體風(fēng)格
enum("normal",'italic')
; -
fontWeight (enum):字體粗細(xì)
enum("normal", 'bold', '100', '200', '300', '400', '500', '600', '700', '800', '900')
- numberOfLines (number):顯示文本的行數(shù)撩轰,如果顯示的內(nèi)容超過(guò)了行數(shù)胯甩,默認(rèn)其他多余的信息就不會(huì)顯示了昧廷;
- letterSpacing ():字符間距;
- lineHeight (number):行高偎箫;
-
textAlign (string):文本對(duì)其方式
("auto", 'left', 'right', 'center', 'justify')
-
textDecorationLine (string):橫線位置
("none", 'underline', 'line-through', 'underline line-through')
木柬; -
textDecorationStyle (string):橫線風(fēng)格
("solid", 'double', 'dotted', 'dashed')
- textDecorationColor (string):橫線顏色;
-
writingDirection (string):文本方向
("auto", 'ltr', 'rtl')
-
textShadowOffset (string):設(shè)置陰影效果
{width:number,height:number}
淹办; - textShadowRadius (number):陰影效果圓角眉枕;
- textShadowColor (string):陰影效果顏色;
- onPress (function):該方法是當(dāng)文本發(fā)生點(diǎn)擊的時(shí)候調(diào)用怜森;