React-native android样式textInput

前端之家收集整理的这篇文章主要介绍了React-native android样式textInput前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在反应本机 android中设置textInput的风格?
喜欢改变下划线颜色选择和光标颜色?
从React Native版本0.21起,仍然无法通过视图道具来设置游标颜色.我已经通过向我的应用程序主题添加自定义样式来成功地设置了光标颜色.

您将要将此代码放在styles.xml文件中,该文件位于您的React项目的android文件夹中,位于android / app / src / main / res / values / styles.xml中.

<resources>
    <style name="AppTheme" parent="Theme.AppCompat.Light">
        <!-- typical material style colors --> 
        <item name="colorPrimary">@color/kio_turquoise</item>
        <item name="colorPrimaryDark">@color/kio_hot_pink</item>

        <!-- sets cursor color -->
        <item name="colorControlActivated">@android:color/black</item>
     </style>
</resources>

请注意,此样式是全局的,并将为您的React Native应用程序中的所有Android TextInput视图设置光标颜色.

原文链接:https://www.f2er.com/react/301196.html

猜你在找的React相关文章