Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. const Screen = () => (
  2. <View>
  3. <SelectableContainer>
  4. <Button title="Button 1" onPress={() => console.log('button 1 click')} />
  5. <Button title="Button 2" onPress={() => console.log('button 2 click')} />
  6. <Button title="Button 3" onPress={() => console.log('button 3 click')} />
  7. <TextInput onChangeText={(text) => console.log('New input value', text)} />
  8. </SelectableContainer>
  9. </View>
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement