am new react-native & nativebase. I try to use nativebase to build Textinput and Dropdown(Picker) in the same page but I cannot. I want to use both of them in the same page. Can u tell me how to. Thank you so much
//I want this to be Textinput
<CardItem style={{bottom: 60}}>
<Text style={{fontSize: 20, fontWeight: 'bold' }}>Text Input</Text>
</CardItem>
<CardItem style={{bottom: 75}}>
<Item rounded style={{borderColor: '#708090' }}>
<Input placeholder="" />
</Item>
</CardItem>
//I want this to be Dropdown
<CardItem style={{bottom: 75}}>
<Text style={{fontSize: 20, fontWeight: 'bold' }}>Dropdown</Text>
</CardItem>
<CardItem style={{bottom: 90}}>
<Item rounded style={{borderColor: '#708090' }}>
<Input placeholder="" />
</Item>
</CardItem>