Skip to content

Commit 41d120f

Browse files
committed
Expo ejection is completed.
1 parent a434e5e commit 41d120f

3 files changed

Lines changed: 5 additions & 36 deletions

File tree

examples/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import { Icon } from "react-native-elements";
1010
// Other Components
1111
import { ShowcaseScreen } from "./src/components/ShowcaseScreen";
12-
import BottomBar from "react-native-bottom-bar"; // Do not forget to make it "react-native-bottom-bar"
12+
import BottomBar from "react-native-bottom-bar";
1313

1414
const mainColor = "#373f4c";
1515
const url = "www.freakycoder.com";

examples/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"dependencies": {
1111
"react": "16.6.3",
1212
"react-native": "0.58.4",
13+
"react-native-bottom-bar": "^0.1.4",
1314
"react-native-elements": "^0.19.1",
14-
"react-native-bottom-bar": "^0.1.3",
15-
"react-native-typography": "^1.4.0",
16-
"react-native-vector-icons": "^6.0.2",
15+
"react-native-iphone-x-helper": "^1.2.0",
1716
"react-native-linear-gradient": "^2.5.3",
18-
"react-native-iphone-x-helper": "^1.2.0"
17+
"react-native-typography": "^1.4.0",
18+
"react-native-vector-icons": "^6.0.2"
1919
},
2020
"devDependencies": {
2121
"babel-core": "^7.0.0-bridge.0",

lib/src/components/styles/common/shared.style.js

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { Platform } from "react-native";
22
import { ifIphoneX } from "react-native-iphone-x-helper";
33
import colors from "./colors";
44

5-
const fontFamilyName = "metropolis";
65
export const isAndroid = Platform.OS === "android";
76

87
export const ifIPhoneXHeader = {
@@ -36,33 +35,3 @@ export const defaultShadowStyle = isAndroid
3635
elevation: 5
3736
}
3837
: shadowStyle.buttonStyle;
39-
40-
export const fontSizes = {
41-
h1: {
42-
fontSize: 58,
43-
lineHeight: 80,
44-
fontFamily: fontFamilyName
45-
},
46-
h2: {
47-
fontSize: 46,
48-
lineHeight: 64,
49-
fontFamily: fontFamilyName
50-
},
51-
h4: {
52-
fontSize: 20,
53-
lineHeight: 34,
54-
fontFamily: fontFamilyName
55-
},
56-
h5: {
57-
fontSize: 16,
58-
lineHeight: 24,
59-
fontFamily: fontFamilyName
60-
}
61-
};
62-
63-
export default {
64-
center: {
65-
alignSelf: "center",
66-
alignContent: "center"
67-
}
68-
};

0 commit comments

Comments
 (0)