-2

**Code Of Modal 1/2 ** Modal code 1

**part 2/2 **

Modal Code 2

When i clicked to add User Popup Opne but text box not showing Thanx in advanced I am new to react-native **OutPut ** Output Don't know why my textbox not showings

1 Answers1

0

Wrap all your text inputs inside a View and give styling to that View(try to give flex 1 or height and width)

<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}

fullmetalH
  • 26
  • 2