-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflutter_native_splash.yaml
More file actions
35 lines (30 loc) · 1.56 KB
/
flutter_native_splash.yaml
File metadata and controls
35 lines (30 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
flutter_native_splash:
android: false
ios: false
#web: false
color: "#FFFFFF"
image: assets/images/splash/logo-splash.png
branding: assets/images/splash/branding-splash.png
branding_mode: bottom # Default value
color_dark: "#121212"
image_dark: assets/images/splash/logo-splash.png
branding_dark: assets/images/splash/branding-splash.png
android_12:
color: "#FFFFFF"
image: assets/images/splash/logo-splash12.png
branding: assets/images/splash/branding-splash12.png # This one doesn't work, it's set manually
color_dark: "#121212"
image_dark: assets/images/splash/logo-splash12.png
branding_dark: assets/images/splash/branding-splash12.png # This one doesn't work, it's set manually
# ################################################################################################
# The screen orientation can be set in Android with the android_screen_orientation parameter.
# Valid parameters can be found here:
# https://developer.android.com/guide/topics/manifest/activity-element#screen
#android_screen_orientation: sensorLandscape
# To hide the notification bar, use the fullscreen parameter. Has no effect in web since web
# has no notification bar. Defaults to false.
# NOTE: Unlike Android, iOS will not automatically show the notification bar when the app loads.
# To show the notification bar, add the following code to your Flutter app:
# WidgetsFlutterBinding.ensureInitialized();
# SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom, SystemUiOverlay.top]);
#fullscreen: true