flutter_native_splash 0.2.8
flutter_native_splash: ^0.2.8 copied to clipboard
Automatically generates native code for adding splash screens in Android and iOS. Customize with specific platform, background color and splash image.
flutter_native_splash #
Automatically generates native code for adding splash screens in Android and iOS. Customize with specific platform, background color and splash image.
Usage #
First, add flutter_native_splash
as a dev dependency in your pubspec.yaml file. You should add the package to dev_dependencies
because you don't need this plugin in your APK.
dev_dependencies:
flutter_native_splash: ^0.2.8
Don't forget to flutter pub get
.
1. Setting the splash screen #
Customized the following settings and add to your project's pubspec.yaml
file or place in a new file in your root project folder named flutter_native_splash.yaml
.
flutter_native_splash:
# color is the only required parameter. It sets the background color of your splash screen.
color: "#42a5f5"
# Optional parameters are listed below. To enable a parameter, uncomment the line by removing
# the leading # character.
# The image parameter allows you to specifiy an image used in the splash screen. It must be a
# png file.
#image: assets/splash.png
# The color_dark and image_dark are parameters that set the color and image when the device is
# in dark mode. If they are not specified, the app will use the color and image above.
# If the image_dark parameter is specified, color_dark must be specified.
#color_dark: "#042a49"
#image_dark: assets/splash-invert.png
# The android and ios parameters can be used to disable generating a splash screen on a given
# platform.
#android: false
#ios: false
# The position of the splash image can be set with android_gravity and ios_content_mode
# parameters. Both 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
# To display the notification bar on Android, use the android_disable_fullscreen parameter.
#android_disable_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'
2. Run the package #
After adding your settings, run the package with
flutter pub run flutter_native_splash:create
When the package finishes running your splash screen is ready.
Notes #
-
If splash screen was not updated properly on iOS or if you experience a white screen before splash screen, run
flutter clean
and recompile your app. If that does not solve the problem, delete your app from the device, power down the device, power up device, install and launch app as per this stackoverflow thread. -
This package modifies
launch_background.xml
, andstyles.xml
files on Android andLaunchScreen.storyboard
,Info.plist
andAppDelegate
on iOS. If you modified this files manually this plugin may not work properly, please open an issue if you find any bugs.
Recommendations #
-
If you want to use a Material Icon as your splash image, download an icon in (material.io/resources/icons) as PNG for Android. I recommend using the biggest icon in
drawable-xxxhdpi
folder which was just downloaded for better results. -
Material Colors are available in material.io/resources/color
How it works #
Android #
- Your splash image will be resized to
mdpi
,hdpi
,xhdpi
,xxhdpi
andxxxhdpi
drawables. - An
<item>
tag containing a<bitmap>
for your splash image drawable will be added inlaunch_background.xml
- Background color will be added in
colors.xml
and referenced inlaunch_background.xml
. - Code for full screen mode toggle will be added in
styles.xml
. - Dark mode variants are placed in
drawable-night
,values-night
, etc. resource folders.
iOS #
- Your splash image will be resized to
@3x
and@2x
images. - Color and image properties will be inserted in
LaunchScreen.storyboard
. - The background color is implemented by using a single pixel png file and stretching it to fit the screen.
- Code for hidden status bar toggle will be added in
Info.plist
andAppDelegate
.
Acknowledgments #
This package was originally created by Henrique Arthur and it is currently maintained by Jon Hanson. It is heavily inspired by flutter_launcher_icons created by Mark O'Sullivan and Franz Silva.