Last active
December 11, 2021 07:10
-
-
Save hieptl/83316220bbc2f5c722d7af118dbf82c2 to your computer and use it in GitHub Desktop.
patientdetail.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import { View, Image, Text, StyleSheet } from 'react-native'; | |
| const PatientDetail = ({ route }) => { | |
| const { item } = route.params; | |
| if (!item) { | |
| return <></>; | |
| } | |
| return ( | |
| <View style={styles.patientDetailWrapper}> | |
| <View style={styles.patientDetailContainer}> | |
| <Image style={styles.patientDetailImage} source={{ uri: item.avatar }} /> | |
| <View style={styles.patientDetailDescriptionContainer}> | |
| <Text style={styles.patientDetailFullname}>{item.fullname}</Text> | |
| <View style={styles.patientDetailTimeslotContainer}> | |
| <View style={styles.patientDetailTimeSlotItem}> | |
| <Text style={styles.patientDetailTimeSlotText}>9:00am</Text> | |
| </View> | |
| <View style={styles.patientDetailTimeSlotItem}> | |
| <Text style={styles.patientDetailTimeSlotText}>9:30am</Text> | |
| </View> | |
| <View style={styles.patientDetailTimeSlotItem}> | |
| <Text style={styles.patientDetailTimeSlotText}>10:00am</Text> | |
| </View> | |
| </View> | |
| </View> | |
| </View> | |
| <View style={styles.patientDetailDescription}> | |
| <Text style={styles.patientDetailDescriptionTitle}>Description</Text> | |
| <Text style={styles.patientDetailDescriptionContent}>{item.bio}</Text> | |
| </View> | |
| </View> | |
| ); | |
| }; | |
| const styles = StyleSheet.create({ | |
| loadingContainer: { | |
| backgroundColor: '#fff', | |
| flex: 1, | |
| flexDirection: 'column', | |
| justifyContent: 'center' | |
| }, | |
| patientDetailWrapper: { | |
| flex: 1, | |
| padding: 12 | |
| }, | |
| patientDetailContainer: { | |
| flexDirection: 'row', | |
| borderBottomWidth: 1, | |
| borderBottomColor: '#ccc', | |
| paddingBottom: 12, | |
| marginBottom: 12 | |
| }, | |
| patientDetailImage: { | |
| width: 100, | |
| height: 100, | |
| borderRadius: 100 / 2 | |
| }, | |
| patientDetailDescriptionContainer: { | |
| flexDirection: 'column' | |
| }, | |
| patientDetailFullname: { | |
| fontSize: 20, | |
| fontWeight: 'bold', | |
| marginLeft: 22 | |
| }, | |
| patientDetailBio: { | |
| fontSize: 16, | |
| fontWeight: 'bold', | |
| marginLeft: 22, | |
| marginTop: 8 | |
| }, | |
| patientDetailRatingWrapper: { | |
| alignItems: 'flex-start', | |
| marginLeft: 22, | |
| paddingTop: 5 | |
| }, | |
| patientDetailTimeslotContainer: { | |
| flexDirection: 'row', | |
| marginLeft: 22, | |
| paddingVertical: 8 | |
| }, | |
| patientDetailTimeSlotItem: { | |
| backgroundColor: '#FCD34D', | |
| borderRadius: 4, | |
| padding: 8, | |
| marginRight: 8 | |
| }, | |
| patientDetailTimeSlotText: { | |
| fontSize: 14, | |
| fontWeight: 'bold' | |
| }, | |
| patientDetailDescription: { | |
| }, | |
| patientDetailDescriptionTitle: { | |
| fontSize: 16, | |
| fontWeight: 'bold' | |
| }, | |
| patientDetailDescriptionContent: { | |
| paddingTop: 8, | |
| fontSize: 15, | |
| textAlign: 'justify' | |
| } | |
| }); | |
| export default PatientDetail; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment