minor changes
This commit is contained in:
parent
dfb51ddb0b
commit
099a151d1d
2 changed files with 8 additions and 0 deletions
|
@ -16,6 +16,8 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
- editing an item orientation, rating or tags automatically sets a metadata date (from the file
|
||||
modified date), if it is missing
|
||||
- Viewer: when opening an item from another app, it is now possible to scroll to other items in the
|
||||
album
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
@ -106,6 +106,12 @@ class _AvesAppState extends State<AvesApp> {
|
|||
home: home,
|
||||
navigatorObservers: _navigatorObservers,
|
||||
builder: (context, child) {
|
||||
// Flutter has various page transition implementations for Android:
|
||||
// - `FadeUpwardsPageTransitionsBuilder` on Oreo / API 27 and below
|
||||
// - `OpenUpwardsPageTransitionsBuilder` on Pie / API 28
|
||||
// - `ZoomPageTransitionsBuilder` on Android 10 / API 29 and above
|
||||
// As of Flutter v2.8.1, `FadeUpwardsPageTransitionsBuilder` is the default, regardless of versions.
|
||||
// In practice, `ZoomPageTransitionsBuilder` feels unstable when transitioning from Album to Collection.
|
||||
if (!areAnimationsEnabled) {
|
||||
child = Theme(
|
||||
data: Theme.of(context).copyWith(
|
||||
|
|
Loading…
Reference in a new issue