We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e563ec commit cedf1efCopy full SHA for cedf1ef
src/theme/getTextFontFamily.ts
@@ -47,12 +47,12 @@ export const getTextFontFamily = (tClassNames: string): TextStyle => {
47
const fontFamily = keys.find(className => tailwindClass.includes(className));
48
49
const textStyle =
50
- Platform.OS === "android"
+ Platform.OS === "ios"
51
? {
52
- fontFamily: fontFamily ? fontFamilies[fontFamily] : "Inter-Regular",
+ fontFamily: "System",
53
}
54
: {
55
- fontFamily: "System",
+ fontFamily: fontFamily ? fontFamilies[fontFamily] : "Inter-Regular",
56
};
57
return textStyle;
58
0 commit comments