Advertisement
eri_qlue

Tukangs - Profile

Dec 17th, 2017
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export default Profile = () => {
  2.   return (
  3.     <View style={styles.container}>
  4.       <View style={styles.headerContainer}>
  5.         <Avatar
  6.           xlarge
  7.           rounded
  8.           source={{uri: "http://ksassets.timeincuk.net/wp/uploads/sites/46/2014/05/Elizabeth-Olsen-6.jpg"}}
  9.           onPress={() => console.log("Works!")}
  10.           activeOpacity={0.7}
  11.           containerStyle={styles.avatarStyle}
  12.         />
  13.         <Text style={styles.name}>Elizabeth Olsen</Text>
  14.       </View>
  15.       <View style={styles.content}>
  16.         <ScrollView>
  17.           <View>
  18.             <Card>
  19.               <FormLabel labelStyle={styles.label}>Email</FormLabel>
  20.               <FormInput editable={false} defaultValue={"adityarrrrrrr@gmail.com"} inputStyle={[styles.text, {left: 0}]} />
  21.               <FormLabel labelStyle={styles.label}>Telepon</FormLabel>
  22.               <FormInput editable={false} defaultValue={"0812-1111-1122"} inputStyle={[styles.text, {left: 0}]} />
  23.               <FormLabel labelStyle={styles.label}>Password</FormLabel>
  24.               <FormInput editable={false} defaultValue={"********"} inputStyle={[styles.text, {left: 0}]} />
  25.               <FormLabel labelStyle={styles.label}>Gender</FormLabel>
  26.               <Text style={styles.text}>Laki-Laki</Text>
  27.             </Card>
  28.             <Card>
  29.               <FormLabel>HOME</FormLabel>
  30.               <Text style={styles.text}>
  31.                 Jalan Ki Hajar Dewantara RT. 2 / RW. 4, Mekarmukti, Cikarang Utara, Bekasi, Jawa Barat 17550
  32.               </Text>
  33.             </Card>
  34.           </View>
  35.         </ScrollView>
  36.       </View>
  37.     </View>
  38.   );
  39. };
  40.  
  41. Deskripsi :
  42. kode ini untuk menampilkan informasi user
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement