Skip to content

Commit 2be5a3f

Browse files
authored
Removed fullscreen (#304)
1 parent fcdb5bf commit 2be5a3f

File tree

44 files changed

+8
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+8
-8
lines changed
-258 Bytes
198 Bytes
-489 Bytes
59 Bytes
-272 Bytes
247 Bytes
610 Bytes
0 Bytes

android/app/src/main/res/values-night-v31/styles.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
44
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
55
<item name="android:forceDarkAllowed">false</item>
6-
<item name="android:windowFullscreen">true</item>
7-
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
6+
<item name="android:windowFullscreen">false</item>
7+
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
88
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
99
<item name="android:windowSplashScreenBackground">#ffffff</item>
1010
<item name="android:windowSplashScreenBrandingImage">@drawable/android12branding</item>

android/app/src/main/res/values-night/styles.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
the Flutter engine draws its first frame -->
77
<item name="android:windowBackground">@drawable/launch_background</item>
88
<item name="android:forceDarkAllowed">false</item>
9-
<item name="android:windowFullscreen">true</item>
10-
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
9+
<item name="android:windowFullscreen">false</item>
10+
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
1111
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
1212
</style>
1313
<!-- Theme applied to the Android Window as soon as the process has started.

android/app/src/main/res/values-v31/styles.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
44
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
55
<item name="android:forceDarkAllowed">false</item>
6-
<item name="android:windowFullscreen">true</item>
7-
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
6+
<item name="android:windowFullscreen">false</item>
7+
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
88
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
99
<item name="android:windowSplashScreenBackground">#ffffff</item>
1010
<item name="android:windowSplashScreenBrandingImage">@drawable/android12branding</item>

ios/Runner/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,6 @@
242242
<key>io.flutter.embedded_views_preview</key>
243243
<true/>
244244
<key>UIStatusBarHidden</key>
245-
<true/>
245+
<false/>
246246
</dict>
247247
</plist>

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ flutter_native_splash:
8989
branding: assets/img/mosquito_alert_letters_aspectratio_5_2.png
9090
branding_mode: bottom
9191
branding_bottom_padding: 24
92-
fullscreen: true
92+
fullscreen: false
9393
android_12:
9494
image: assets/img/mosquito_alert_splash.png
9595
color: "#ffffff"

0 commit comments

Comments
 (0)