Skip to content

Commit a02cce1

Browse files
drawer header issue fixed
1 parent 5dcd879 commit a02cce1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ios/CareerWill/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<string>UIInterfaceOrientationLandscapeRight</string>
5151
</array>
5252
<key>UIViewControllerBasedStatusBarAppearance</key>
53-
<true/>
53+
<false/>
5454
<key>UIAppFonts</key>
5555
<array>
5656
<string>GoogleSans-Bold.ttf</string>

src/Navigation/drawer.navigation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ export default function DrawerNavigation(props) {
5454
name={'menu'}
5555
size={RFValue(22)}
5656
color="white"
57-
// style={{marginLeft: hp(20)}}
5857
/>
5958
</AnimatedPressable>
6059
</View>
@@ -66,6 +65,7 @@ export default function DrawerNavigation(props) {
6665
),
6766
headerStyle: {
6867
backgroundColor: '#516195', //Set Header color
68+
height: 70
6969
},
7070
drawerLabelStyle: {
7171
marginLeft: -25,

src/components/AppIcon.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Ionicons from 'react-native-vector-icons/Ionicons';
33

44
function AppIcon({name, ...otherProps}) {
55
const iconName = name;
6-
Ionicons.loadFont()
6+
// Ionicons.loadFont()
77
return <Ionicons name={iconName} {...otherProps} />;
88
}
99

0 commit comments

Comments
 (0)