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 0e3c305 commit bb0bbb8Copy full SHA for bb0bbb8
README.md
@@ -43,11 +43,11 @@ Import and use the utility functions to fetch values:
43
```tsx md title="App.tsx"
44
import {
45
fetchStatusBarHeight,
46
- fetchBottonInset,
+ fetchBottomInset,
47
} from '@logicwind/react-native-status-bar-height';
48
49
const statusBarHeight = fetchStatusBarHeight();
50
-const bottomInset = fetchBottonInset();
+const bottomInset = fetchBottomInset();
51
```
52
53
## Example
@@ -57,7 +57,7 @@ const bottomInset = fetchBottonInset();
57
Status Bar Height
58
</Text>
59
<View style={{ flex: 1 }} />
60
- <Text style={{ marginBottom: fetchBottonInset() }}>
+ <Text style={{ marginBottom: fetchBottomInset() }}>
61
Bottom Safe Area
62
63
</View>
0 commit comments