Releases: jonbhanson/flutter_native_splash
Releases · jonbhanson/flutter_native_splash
v2.0.5
- Converted to a plugin since there is now platform specific code.
v2.0.4
- Fix Error: Not found: 'dart:js' error. Fixes #292.
v2.0.3
- Added preserve() and remove() methods.
- Remove splash from DOM in web.
v2.0.2
- Update existing styles xml to support Xiaomi/Redmi devices. Fixes #285, fixes #281.
- Avoid changing logo size on mobile browsers. Fixes #276.
v2.0.0
- BREAKING CHANGE: Added
removeAfter
method which allows the native splash to remain until an initialization routine is complete. In order to use this method, the flutter_native_splash
dependency must be moved from dev_dependencies
to dependencies
. Thanks Ahmed for the tip. Closes #271.
v1.3.3
[1.3.3] - (2022-Jan-01)
- Merged PR that adds branding. Thanks Faiizii for PR. Closes #256.
- Updated readme. Closes #258.
- Fix so that the splash screen does not cover the app in web. Fixes 253.
- Updates per linter rules.
v1.3.2
- Updated readme. Hide splash image in web from screen readers. Closes #231.
v1.3.1
Don't create Android 12 night res files if dark mode is not configured. Fixes #227. Remove
command takes dark mode into account.
v1.3.0
- Added Android 12 support. Closes #204, closes #226.
v1.2.2
- Added a FAQ to address the deprecation of
SplashScreenDrawable
. Closes #199.
- Added
<picture>
tag to index.html
by finding the </body>
tag instead of src="main.dart.js
, which was removed in Flutter 2.5. Fixes #202.
- Added
<item name="android:forceDarkAllowed">false</item>
tag to dark mode styles.xml
to improve Xiaomi support. Closes #184.