简体   繁体   English

reactNative中未显示模态内容

[英]Contenet of modal not showing in reactNative

**Code Of Modal 1/2 ** **模态代码 1/2 ** 模式代码 1

**part 2/2 ** **第 2/2 部分 **

模式代码 2

When i clicked to add User Popup Opne but text box not showing Thanx in advanced I am new to react-native **OutPut **当我单击添加 User Popup Opne 但文本框未在高级中显示 Thanx 时,我是 react-native 的新手**OutPut ** 输出不知道为什么我的文本框不显示

Wrap all your text inputs inside a View and give styling to that View(try to give flex 1 or height and width)将所有文本输入包装在视图中并为该视图提供样式(尝试提供 flex 1 或高度和宽度)

<View style={{flex: 1}}>
  {... your text inputs here}
</View>

If {flex: 1} doesn't work, try giving static height and width {height: 200, width: 200}如果 {flex: 1} 不起作用,请尝试给 static 高度和宽度 {height: 200, width: 200}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM