Advertisement
heian

Untitled

May 30th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <View style={styles.container}>
  2. <View style={styles.settingsContainer}>
  3. <Text>Nume Prenume</Text>
  4. <Text>adresa_email</Text>
  5. </View>
  6.  
  7. <View style={styles.showTextcontainer}>
  8. <Text>Currently you have a student account.</Text>
  9. <Text>Switch below to upgrade yout account to teacher.</Text>
  10. </View>
  11.  
  12. <View style={styles.ToggleContainer}>
  13. <ToggleSwitch
  14. label="Teacher"
  15. isOn={isTeacher}
  16. onToggle={(isOn) => {
  17. this.setState({
  18. isTeacher: isOn
  19. })
  20. }}
  21. />
  22.  
  23.  
  24. </View>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement