textDecorationLine('none', 'underline', 'line-through'):橫線位置
none:沒有橫線
underline:
// 橫線 textDecorationLine:'underline'
效果:
underline
line-through:
// 橫線 textDecorationLine:'line-through'
效果:
line-through
textDecorationStyle('solid', 'double', 'dotted', 'dashed'):線風(fēng)格
solid
// 橫線風(fēng)格 textDecorationStyle:'solid'
效果:
solid
double
// 橫線風(fēng)格 textDecorationStyle:'double'
效果:
double
dotted
// 橫線風(fēng)格 textDecorationStyle:'dotted'
效果:
dotted
dashed
// 橫線風(fēng)格 textDecorationStyle:'dashed'
效果:
dashed
textDecorationColor:線的顏色
// 線的顏色 textDecorationColor:'black',
效果:
線的顏色
純虛線 (目前只找到這種辦法)
<Text style={{textDecorationLine:'line-through',textDecorationStyle:'dotted',color:'red' }}>- -</Text>