iOS 中的 ScrollView 缺少 TextInput,但 Android 中没有
TextInput is missing in ScrollView in iOS but not in Android
我的 TextInput 在 iOS 的 ScrollView 中丢失了。它在 android 上运行良好。
包括使用 Playground 的示例应用程序。
https://rnplay.org/apps/KtTZ2g
您可以看到 android 正在显示 TextInput,但 iOS 的不显示它。
这些错误让我抓狂...
使用 TextInput 时,请务必提供高度:
<TextInput
style={{flex: 1, color: 'black', height:40}}
editable={false}
defaultValue="+"
underlineColorAndroid='#C8C7CC' />
我的 TextInput 在 iOS 的 ScrollView 中丢失了。它在 android 上运行良好。 包括使用 Playground 的示例应用程序。
https://rnplay.org/apps/KtTZ2g
您可以看到 android 正在显示 TextInput,但 iOS 的不显示它。
这些错误让我抓狂...
使用 TextInput 时,请务必提供高度:
<TextInput
style={{flex: 1, color: 'black', height:40}}
editable={false}
defaultValue="+"
underlineColorAndroid='#C8C7CC' />