解決済み: 反応ネイティブのテキスト行の取り消し線の色を変更する

React Native でテキスト行の取り消し線の色を変更する際の主な問題は、目的の効果を実現するのが難しい場合があることです。

I have a text component in React Native and I want to change the color of the strike through line. How can I do this?


A:

You can use the <code>textDecorationColor</code> style property: https://facebook.github.io/react-native/docs/text-style-props#textdecorationcolor
<code>&lt;Text style={{ textDecorationLine: 'line-through', textDecorationColor: 'red' }}&gt;Hello world!&lt;/Text&gt;</code>

StyleSheet を使用してネイティブの取り消し線テキストに反応する

React Native では、Text コンポーネントの styleSheet プロパティを使用して、スタイルをテキストに適用できます。

styleSheet プロパティを使用するには、まず StyleSheet オブジェクトを作成する必要があります。 その後、styleSheet プロパティを使用してスタイルをテキストに適用できます。

以下は、styleSheet プロパティを使用して React Native のテキストにスタイルを適用する方法の例です。

これはスタイル付きのテキストです

関連記事:

コメント