Advertisement
heian

Untitled

May 29th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <View style={styles.showNameContainer}>
  2. <Text>Nume Prenume</Text>
  3. <Text>adresa_email</Text>
  4. <ToggleSwitch
  5. isOn={this.state.isOn1}
  6. onPress={this.onPress1}
  7. />
  8. </View>
  9.  
  10. <View style={styles.showTextcontainer}>
  11. <Text>Currently you have a student account.</Text>
  12. </View>
  13.  
  14. <View style={styles.checkBoxcontainer}>
  15. <ToggleSwitch
  16. isOn={true}
  17. onToggle={ (isOn) => (false) }
  18. />
  19.  
  20. <CheckBox
  21. center
  22. title='Teacher account'
  23. checked={false}
  24. />
  25.  
  26. </View>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement