Skip to content

Commit 3b13677

Browse files
committed
update rn-boilerplate add vectorIcons android
1 parent fb3eb41 commit 3b13677

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

android/app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,4 +216,5 @@ task copyDownloadableDepsToLibs(type: Copy) {
216216
into 'libs'
217217
}
218218

219+
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
219220
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)

src/screens/Home/Home.screen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const Home = ({ navigation, user }) => {
3535

3636
return (
3737
<>
38-
<StatusBar barStyle="dark-content" />
38+
<StatusBar barStyle="dark-content" backgroundColor={'#f9f9f9'} />
3939
<SafeAreaView style={styles.SafeAreaView1} />
4040
<SafeAreaView style={styles.SafeAreaView2}>
4141
<View style={styles.outerWrapper}>

src/screens/Profile/Profile.screen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Icon from 'react-native-vector-icons/Ionicons'
1313
const Home = ({ navigation }) => {
1414
return (
1515
<>
16-
<StatusBar barStyle="dark-content" />
16+
<StatusBar barStyle="dark-content" backgroundColor={'#f9f9f9'} />
1717
<SafeAreaView style={styles.SafeAreaView1} />
1818
<SafeAreaView style={styles.SafeAreaView2}>
1919
<View style={styles.outerWrapper}>

0 commit comments

Comments
 (0)