We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.android下设置TextInput的height很小以后,大概是小于40,里面的文本显示不全
出现原因: 问题是因为android下的TextInput上下有最小的padding,height很小以后,paddingBottom + fontSize > height 所以显示不全。 解决办法: 给TextInput的paddingBottom 设置的小一点。让font能够在height里面垂直居中。
2.android下View设置的zIndex属性有显示bug
使用场景: 写的Select组件,想让option显示在上层,所以用的zIndex属性,但是在android下时出现显示的问题。
解决办法: 首先将Select组件放在布局的最后面,然后使用position: absolute 绝对定位,定位到需要的位置,因为Select组件放在的是布局的最后面,所以他也会在最上层显示
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1.android下设置TextInput的height很小以后,大概是小于40,里面的文本显示不全
出现原因:
问题是因为android下的TextInput上下有最小的padding,height很小以后,paddingBottom + fontSize > height 所以显示不全。
解决办法:
给TextInput的paddingBottom 设置的小一点。让font能够在height里面垂直居中。
2.android下View设置的zIndex属性有显示bug
使用场景:
写的Select组件,想让option显示在上层,所以用的zIndex属性,但是在android下时出现显示的问题。
解决办法:
首先将Select组件放在布局的最后面,然后使用position: absolute 绝对定位,定位到需要的位置,因为Select组件放在的是布局的最后面,所以他也会在最上层显示
The text was updated successfully, but these errors were encountered: