Skip to content

Commit

Permalink
Merge branch 'develop' into ft-add-review-screen
Browse files Browse the repository at this point in the history
  • Loading branch information
munezeromicha committed May 18, 2024
2 parents b9a5bfa + f30b8dd commit 8f94fb1
Show file tree
Hide file tree
Showing 110 changed files with 9,214 additions and 867 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

Online Doctor Appointment & Consultation App

# Test coverage

[![codecov](https://codecov.io/gh/atlp-rwanda/matadors-rn-medica/graph/badge.svg?token=5OP0X0107C)](https://codecov.io/gh/atlp-rwanda/matadors-rn-medica)

For coverage on other branches, please visit the [Codecov project page](https://codecov.io/gh/atlp-rwanda/matadors-rn-medica) and select the appropriate branch.


## Table Of Content

- [Medica App](#medica-app)
Expand Down Expand Up @@ -124,8 +131,3 @@ Feel free to reach out to us:
## License

None At the moment !!
# Test coverage

[![codecov](https://codecov.io/gh/atlp-rwanda/matadors-rn-medica/graph/badge.svg?token=5OP0X0107C)](https://codecov.io/gh/atlp-rwanda/matadors-rn-medica)

For coverage on other branches, please visit the [Codecov project page](https://codecov.io/gh/atlp-rwanda/matadors-rn-medica) and select the appropriate branch.
20 changes: 16 additions & 4 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"infoPlist": {
Expand Down Expand Up @@ -43,7 +41,21 @@
}
],
"expo-font",
"expo-secure-store"
"expo-secure-store",
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
"recordAudioAndroid": true
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you share them with your friends."
}
]
],
"experiments": {
"typedRoutes": true
Expand Down
8 changes: 6 additions & 2 deletions app/(app)/ActionMenu/Booking/Doctor_details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ const DoctorDetails = () => {
const {theme, changeTheme} = useContext(ThemeContext)

return (
<View style={[styles.container, {backgroundColor: theme === "dark" ? Colors.others.black : Colors.others.white}]}>
<ScrollView style={[styles.container, { backgroundColor: theme === "dark" ? Colors.others.black : Colors.others.white }]}
contentContainerStyle={{
height:"100%"
}}
>
<SafeAreaView>
<View style={styles.navBar}>
<View style={styles.leftSide}>
Expand Down Expand Up @@ -256,7 +260,7 @@ const DoctorDetails = () => {
</Pressable>
</View>
<StatusBar backgroundColor={"black"} />
</View>
</ScrollView>
);
};

Expand Down
2 changes: 0 additions & 2 deletions app/(app)/ActionMenu/Booking/Select-package.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ const SelectPackage = () => {
<Pressable
onPress={()=> router.back()}
style={styles.container}>
<TouchableOpacity>
<MaterialIcons name="arrow-back" size={23} />
</TouchableOpacity>
<Text style={styles.fill}>Select Package</Text>
</Pressable>
<View style={styles.middle}>
Expand Down
Loading

0 comments on commit 8f94fb1

Please sign in to comment.