Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. var radio_props = [
  2. { label: 'Top-Up', value: 'T', },
  3. { label: 'Recharge', value: 'R' },
  4. { label: 'Add-on', value: 'A' },
  5. ];
  6. <DrawerLayoutAndroid>
  7. .
  8. .
  9. <Modal>
  10. .
  11. .
  12. .
  13. </Modal>
  14. .
  15. .
  16. .
  17. <View style={styles.selradio}>
  18. <RadioForm
  19. // radio_props={radio_props}
  20. initial={0}
  21. onPress={(value) => { this.setState({ RTAType: value }) }}
  22. formHorizontal={true}
  23. buttonColor={'#757575'}
  24. buttonSize={10}
  25. buttonOuterSize={20}
  26. labelStyle={{ marginRight: 15, }}
  27. />
  28. </View>
  29. .
  30. .
  31. </DrawerLayoutAndroid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement