如何通过Text in react native添加删除?

时间:2017-08-23 07:47:14

标签: android css reactjs react-native

嘿我想以10美元的金额添加Strike Through以显示削减金额。请查看以下内容:

#include <cstdarg>
template<typename... T>
string concat_string(T const&... t){
    std::stringstream s;
    s<<t;
    return s;
}

请添加css,以便我可以在两个文本的行中对齐,在此先感谢。

请查看图片enter image description here

3 个答案:

答案 0 :(得分:26)

使用:

<Text style={{textDecorationLine: 'line-through', textDecorationStyle: 'solid'}}>
  Solid line-through
</Text>

答案 1 :(得分:4)

<Text style={{ textDecorationLine: 'line-through' }}>Strike through text</Text>

您可以从官方文档here

中找到更多文字样式选项

答案 2 :(得分:1)

试试这个:

<Text style={{ textDecorationLine: 'line-through' }}>$12</Text>

它将通过全文发布。