تم حلها: تغيير لون الخط عبر سطر النص في رد الفعل الأصلي

تكمن المشكلة الرئيسية في تغيير لون الخط عبر سطر النص في 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 ، يمكنك استخدام خاصية styleSheet لمكون نص لتطبيق الأنماط على النص.

لاستخدام الخاصية styleSheet ، تحتاج أولاً إلى إنشاء كائن StyleSheet. بعد ذلك ، يمكنك استخدام الخاصية styleSheet لتطبيق الأنماط على النص.

فيما يلي مثال على كيفية استخدام خاصية styleSheet لتطبيق الأنماط على النص في React Native:

هذا بعض النص مع الأنماط

الوظائف ذات الصلة:

اترك تعليق