Skip to content

Commit 1c70b56

Browse files
fix: workaround for buggy Android StatusBar
2 parents 8a292f3 + 5da2758 commit 1c70b56

18 files changed

+3108
-3288
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Check out the official docs: [web-ridge.github.io/react-native-paper-dates](http
3838

3939
## Maintainers
4040

41-
[RichardLindhout](https://twitter.com/RichardLindhout) from [web_ridge](https://twitter.com/web_ridge)
41+
[RichardLindhout](https://twitter.com/RichardLindhout) from [web_ridge](https://twitter.com/web_ridge)
4242
[Brandon Fitzwater](https://github.com/iM-GeeKy)
4343

4444

docusaurus/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
},
2727
"devDependencies": {
2828
"@docusaurus/module-type-aliases": "2.2.0",
29-
"@tsconfig/docusaurus": "^1.0.5",
30-
"typescript": "^4.7.4"
29+
"@tsconfig/docusaurus": "^1.0.7",
30+
"typescript": "^4.9.5"
3131
},
3232
"browserslist": {
3333
"production": [

docusaurus/yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1894,10 +1894,10 @@
18941894
resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
18951895
integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
18961896

1897-
"@tsconfig/docusaurus@^1.0.5":
1898-
version "1.0.6"
1899-
resolved "https://registry.npmjs.org/@tsconfig/docusaurus/-/docusaurus-1.0.6.tgz#7305a7fa590decc0d5968500234e95fd68788978"
1900-
integrity sha512-1QxDaP54hpzM6bq9E+yFEo4F9WbWHhsDe4vktZXF/iDlc9FqGr9qlg+3X/nuKQXx8QxHV7ue8NXFazzajsxFBA==
1897+
"@tsconfig/docusaurus@^1.0.7":
1898+
version "1.0.7"
1899+
resolved "https://registry.yarnpkg.com/@tsconfig/docusaurus/-/docusaurus-1.0.7.tgz#a3ee3c8109b3fec091e3d61a61834e563aeee3c3"
1900+
integrity sha512-ffTXxGIP/IRMCjuzHd6M4/HdIrw1bMfC7Bv8hMkTadnePkpe0lG0oDSdbRpSDZb2rQMAgpbWiR10BvxvNYwYrg==
19011901

19021902
"@types/body-parser@*":
19031903
version "1.19.2"
@@ -7039,10 +7039,10 @@ typedarray-to-buffer@^3.1.5:
70397039
dependencies:
70407040
is-typedarray "^1.0.0"
70417041

7042-
typescript@^4.7.4:
7043-
version "4.9.4"
7044-
resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
7045-
integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
7042+
typescript@^4.9.5:
7043+
version "4.9.5"
7044+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
7045+
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
70467046

70477047
ua-parser-js@^0.7.30:
70487048
version "0.7.32"

example/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
"test": "jest"
1313
},
1414
"dependencies": {
15-
"expo": "^49.0.11",
15+
"expo": "^49.0.21",
1616
"expo-splash-screen": "~0.20.5",
1717
"expo-status-bar": "~1.6.0",
1818
"react": "18.2.0",
1919
"react-dom": "18.2.0",
2020
"react-native": "0.72.6",
21-
"react-native-paper": "^5.10.4",
22-
"react-native-web": "~0.19.8"
21+
"react-native-paper": "^5.11.4",
22+
"react-native-web": "~0.19.9"
2323
},
2424
"devDependencies": {
25-
"@babel/core": "^7.22.20",
25+
"@babel/core": "^7.23.6",
2626
"@expo/webpack-config": "^19.0.0",
2727
"babel-loader": "^8.1.0",
2828
"babel-plugin-module-resolver": "^4.1.0"

example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function App({
194194
<StatusBar
195195
barStyle={'dark-content'}
196196
translucent
197-
backgroundColor={'transparent'}
197+
backgroundColor={'#ffffff'}
198198
/>
199199
<ScrollView
200200
style={{ backgroundColor: theme.colors.background }}

0 commit comments

Comments
 (0)