Closed odesey closed 6 years ago
There is an incompatibility with the iPhone X. I modified the package slightly to fix the issue:
const isIphoneX = () => { let d = Dimensions.get("window"); const { height, width } = d; const result = height === 812 ? 74 : 44; return result; }; ... const APPBAR_HEIGHT = Platform.OS === "ios" ? isIphoneX() : 56;
Thanks, I'll take a look and fix the issue as soon as possible.
Fixed in v0.1.2
v0.1.2
There is an incompatibility with the iPhone X. I modified the package slightly to fix the issue: