-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Agnieszka Forajter
committed
Feb 8, 2024
1 parent
5952cc0
commit 376b39c
Showing
1 changed file
with
3 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,101 +1,22 @@ | ||
flutter_native_splash: | ||
|
||
# This package generates native code to customize Flutter's default white native splash screen | ||
# with background color and splash image. | ||
# Customize the parameters below, and run the following command in the terminal: | ||
# flutter pub run flutter_native_splash:create | ||
# To restore Flutter's default white splash screen, run the following command in the terminal: | ||
# flutter pub run flutter_native_splash:remove | ||
|
||
# color or background_image is the only required parameter. Use color to set the background | ||
# of your splash screen to a solid color. Use background_image to set the background of your | ||
# splash screen to a png image. This is useful for gradients. The image will be stretch to the | ||
# size of the app. Only one parameter can be used, color and background_image cannot both be set. | ||
# color: "#2b2a4e" | ||
background_image: "assets/images/common/splash_screen_bg.png" | ||
|
||
# Optional parameters are listed below. To enable a parameter, uncomment the line by removing | ||
# the leading # character. | ||
|
||
# The image parameter allows you to specify an image used in the splash screen. It must be a | ||
# png file and should be sized for 4x pixel density. | ||
image: assets/images/common/android12icon.png | ||
|
||
# The branding property allows you to specify an image used as branding in the splash screen. | ||
# It must be a png file. Currently, it is only supported for Android < v12 and iOS. | ||
#branding: assets/dart.png | ||
|
||
# To position the branding image at the bottom of the screen you can use bottom, bottomRight, | ||
# and bottomLeft. The default values is bottom if not specified or specified something else. | ||
#branding_mode: bottom | ||
|
||
# The color_dark, background_image_dark, image_dark, branding_dark are parameters that set the background | ||
# and image when the device is in dark mode. If they are not specified, the app will use the | ||
# parameters from above. If the image_dark parameter is specified, color_dark or | ||
# background_image_dark must be specified. color_dark and background_image_dark cannot both be | ||
# set. | ||
#color_dark: "#042a49" | ||
#background_image_dark: "assets/dark-background.png" | ||
#image_dark: assets/splash-invert.png | ||
#branding_dark: assets/dart_dark.png | ||
|
||
|
||
# Android 12 handles the splash screen differently than previous versions. Please visit | ||
# https://developer.android.com/guide/topics/ui/splash-screen | ||
# Following are Android 12 specific parameter. | ||
android_12: | ||
color: "#81E4FF" | ||
# The image parameter sets the splash screen icon image. If this parameter is not specified, | ||
# the app's launcher icon will be used instead. | ||
# Please note that the splash screen will be clipped to a circle on the center of the screen. | ||
# App icon with an icon background: This should be 960×960 pixels, and fit within a circle | ||
# 640 pixels in diameter. | ||
# App icon without an icon background: This should be 1152×1152 pixels, and fit within a circle | ||
# 768 pixels in diameter. | ||
image: assets/images/common/android12icon.png | ||
|
||
# App icon background color. | ||
# icon_background_color: "#111111" | ||
|
||
# The image_dark parameter and icon_background_color_dark set the image and icon background | ||
# color when the device is in dark mode. If they are not specified, the app will use the | ||
# parameters from above. | ||
#image_dark: assets/android12splash-invert.png | ||
#icon_background_color_dark: "#eeeeee" | ||
|
||
# The android, ios and web parameters can be used to disable generating a splash screen on a given | ||
# platform. | ||
#android: false | ||
#ios: false | ||
# web: false | ||
|
||
# The position of the splash image can be set with android_gravity, ios_content_mode, and | ||
# web_image_mode parameters. All default to center. | ||
# | ||
# android_gravity can be one of the following Android Gravity (see | ||
# https://developer.android.com/reference/android/view/Gravity): bottom, center, | ||
# center_horizontal, center_vertical, clip_horizontal, clip_vertical, end, fill, fill_horizontal, | ||
# fill_vertical, left, right, start, or top. | ||
#android_gravity: center | ||
# | ||
# ios_content_mode can be one of the following iOS UIView.ContentMode (see | ||
# https://developer.apple.com/documentation/uikit/uiview/contentmode): scaleToFill, | ||
# scaleAspectFit, scaleAspectFill, center, top, bottom, left, right, topLeft, topRight, | ||
# bottomLeft, or bottomRight. | ||
#ios_content_mode: center | ||
# | ||
# web_image_mode can be one of the following modes: center, contain, stretch, and cover. | ||
#web_image_mode: center | ||
#web: false | ||
|
||
android_screen_orientation: userLandscape | ||
# 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 | ||
|
||
# If you have changed the name(s) of your info.plist file(s), you can specify the filename(s) | ||
# with the info_plist_files parameter. Remove only the # characters in the three lines below, | ||
# do not remove any spaces: | ||
#info_plist_files: | ||
# - 'ios/Runner/Info-Debug.plist' | ||
# - 'ios/Runner/Info-Release.plist' | ||
|