added animation for bottomNavBar and overlayWidget

This commit is contained in:
ashilkn 2022-05-07 19:02:55 +05:30
parent 01dff4be2a
commit 3d3f9ce4fc
3 changed files with 259 additions and 159 deletions

View file

@ -37,11 +37,13 @@ extension CustomColorScheme on ColorScheme {
: Color(0xFF1DB954);
Color get frostyBlurBackdropFilterColor =>
brightness == Brightness.light ? Colors.black : Colors.white;
Colors.white; //same for both themes
// brightness == Brightness.light ? Colors.black : Colors.white;
Color get cancelSelectedButtonColor => brightness == Brightness.light
? Color.fromARGB(255, 225, 225, 225)
: Color.fromARGB(255, 30, 30, 30);
Color get cancelSelectedButtonColor => Colors.black; //same for both themes
// brightness == Brightness.light
// ? Color.fromARGB(255, 225, 225, 225)
// : Color.fromARGB(255, 30, 30, 30);
}
OutlinedButtonThemeData buildOutlinedButtonThemeData(

View file

@ -4,7 +4,6 @@ import 'dart:ui';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:logging/logging.dart';
import 'package:page_transition/page_transition.dart';
import 'package:photos/core/configuration.dart';
@ -38,8 +37,72 @@ class GalleryOverlayWidget extends StatefulWidget {
final SelectedFiles selectedFiles;
final String path;
final Collection collection;
const GalleryOverlayWidget(this.type, this.selectedFiles,
{this.path, this.collection, Key key})
: super(key: key);
GalleryOverlayWidget(
@override
State<GalleryOverlayWidget> createState() => _GalleryOverlayWidgetState();
}
class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget>
with SingleTickerProviderStateMixin {
StreamSubscription _userAuthEventSubscription;
Function() _selectedFilesListener;
final GlobalKey shareButtonKey = GlobalKey();
@override
void initState() {
_selectedFilesListener = () {
setState(() {});
};
widget.selectedFiles.addListener(_selectedFilesListener);
_userAuthEventSubscription =
Bus.instance.on<SubscriptionPurchasedEvent>().listen((event) {
setState(() {});
});
super.initState();
}
@override
void dispose() {
_userAuthEventSubscription.cancel();
widget.selectedFiles.removeListener(_selectedFilesListener);
super.dispose();
}
@override
Widget build(BuildContext context) {
bool filesAreSelected = widget.selectedFiles.files.isNotEmpty;
return AnimatedContainer(
duration: Duration(milliseconds: 200),
curve: Curves.easeInOut,
height: filesAreSelected ? 108 : 0,
child: AnimatedOpacity(
duration: Duration(milliseconds: 75),
opacity: filesAreSelected ? 1.0 : 0.0,
curve: Curves.easeIn,
child: IgnorePointer(
ignoring: !filesAreSelected,
child: OverlayWidget(
widget.type,
widget.selectedFiles,
path: widget.path,
collection: widget.collection,
),
),
),
);
}
}
class OverlayWidget extends StatefulWidget {
final GalleryOverlayType type;
final SelectedFiles selectedFiles;
final String path;
final Collection collection;
const OverlayWidget(
this.type,
this.selectedFiles, {
this.path,
@ -47,10 +110,10 @@ class GalleryOverlayWidget extends StatefulWidget {
});
@override
_GalleryOverlayWidgetState createState() => _GalleryOverlayWidgetState();
_OverlayWidgetState createState() => _OverlayWidgetState();
}
class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
class _OverlayWidgetState extends State<OverlayWidget> {
final _logger = Logger("GalleryOverlay");
StreamSubscription _userAuthEventSubscription;
Function() _selectedFilesListener;
@ -77,11 +140,11 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
@override
Widget build(BuildContext context) {
if (widget.selectedFiles.files.isNotEmpty) {
return Container(
height: 108,
color: Colors.transparent,
child: Column(
child: ListView(
//ListView for animation to work without render overflow
physics: const NeverScrollableScrollPhysics(),
children: [
Padding(
padding: EdgeInsets.symmetric(horizontal: 12),
@ -93,8 +156,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
color: Theme.of(context)
.colorScheme
.frostyBlurBackdropFilterColor
.withOpacity(0.6),
height: 46,
.withOpacity(0.5),
width: double.infinity,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
@ -104,12 +166,9 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
child: Text(
widget.selectedFiles.files.length.toString() +
' selected',
style:
Theme.of(context).textTheme.subtitle2.copyWith(
style: Theme.of(context).textTheme.subtitle2.copyWith(
fontWeight: FontWeight.w600,
color: Theme.of(context)
.colorScheme
.inverseTextColor,
color: Colors.black //same for both themes
),
),
),
@ -122,29 +181,42 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
),
),
),
const SizedBox(height: 16),
InkWell(
child: Container(
height: 32,
width: 86,
decoration: BoxDecoration(
const Padding(padding: EdgeInsets.symmetric(vertical: 8)),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ClipRRect(
borderRadius: BorderRadius.circular(24),
color:
Theme.of(context).colorScheme.cancelSelectedButtonColor,
),
child: InkWell(
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 50, sigmaY: 50),
child: Container(
padding: EdgeInsets.symmetric(vertical: 8),
//height: 32,
width: 86,
color: Theme.of(context)
.colorScheme
.cancelSelectedButtonColor
.withOpacity(0.5),
child: Center(
child: Text('Cancel',
style: Theme.of(context).textTheme.subtitle2),
style: Theme.of(context)
.textTheme
.subtitle2
.copyWith(
color: Colors.white, //same for both themes
)),
),
),
),
onTap: _clearSelectedFiles,
),
),
],
),
],
),
);
} else {
return const SizedBox.shrink();
}
}
void _clearSelectedFiles() {
@ -196,7 +268,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
Tooltip(
message: msg,
child: IconButton(
color: Theme.of(context).colorScheme.inverseIconColor,
color: Colors.black, //same for both themes
icon: Icon(iconData),
onPressed: () {
_createAlbum();
@ -212,7 +284,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
Tooltip(
message: "move",
child: IconButton(
color: Theme.of(context).colorScheme.inverseIconColor,
color: Colors.black, //same for both themes
icon: Icon(Platform.isAndroid
? Icons.arrow_forward
: CupertinoIcons.arrow_right),
@ -227,7 +299,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
Tooltip(
message: "share",
child: IconButton(
color: Theme.of(context).colorScheme.inverseIconColor,
color: Colors.black, //same for both themes
key: shareButtonKey,
icon: Icon(Platform.isAndroid ? Icons.share : CupertinoIcons.share),
onPressed: () {
@ -243,7 +315,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
Tooltip(
message: "delete",
child: IconButton(
color: Theme.of(context).colorScheme.inverseIconColor,
color: Colors.black, //same for both themes
icon:
Icon(Platform.isAndroid ? Icons.delete : CupertinoIcons.delete),
onPressed: () {
@ -258,7 +330,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
Tooltip(
message: "delete",
child: IconButton(
color: Theme.of(context).colorScheme.inverseIconColor,
color: Colors.black, //same for both themes
icon: Icon(
Platform.isAndroid ? Icons.delete : CupertinoIcons.delete,
),
@ -273,7 +345,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
Tooltip(
message: "remove",
child: IconButton(
color: Theme.of(context).colorScheme.inverseIconColor,
color: Colors.black, //same for both themes
icon: Icon(
Icons.remove_circle_rounded,
),
@ -292,9 +364,9 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
actions.add(Tooltip(
message: showArchive ? "archive" : "unarchive",
child: IconButton(
color: Colors.black, //same for both themes
icon: Icon(
showArchive ? Icons.visibility_off : Icons.visibility,
color: Theme.of(context).colorScheme.inverseIconColor,
),
onPressed: () {
_handleVisibilityChangeRequest(
@ -310,6 +382,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
actions.add(Tooltip(
message: "restore",
child: IconButton(
color: Colors.black, //same for both themes
icon: Icon(
Icons.restore,
color: Theme.of(context).colorScheme.inverseIconColor,
@ -331,7 +404,7 @@ class _GalleryOverlayWidgetState extends State<GalleryOverlayWidget> {
Tooltip(
message: "delete permanently",
child: IconButton(
color: Theme.of(context).colorScheme.inverseIconColor,
color: Colors.black, //same for both themes
icon: Icon(
Icons.delete_forever,
),

View file

@ -2,10 +2,8 @@ import 'dart:async';
import 'dart:io';
import 'dart:ui';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter/widgets.dart';
import 'package:logging/logging.dart';
import 'package:move_to_background/move_to_background.dart';
import 'package:photo_manager/photo_manager.dart';
@ -294,12 +292,21 @@ class _HomeWidgetState extends State<HomeWidget> {
Align(alignment: Alignment.bottomCenter, child: BottomShadowWidget()),
Align(
alignment: Alignment.bottomCenter,
child: Stack(children: [
child: Stack(
children: [
Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
HomeBottomNavigationBar(
_selectedFiles,
selectedTabIndex: _selectedTabIndex,
),
])),
const SizedBox(height: 8),
],
),
],
),
),
Align(
alignment: Alignment.bottomCenter,
child:
@ -545,12 +552,24 @@ class _HomeBottomNavigationBarState extends State<HomeBottomNavigationBar> {
@override
Widget build(BuildContext context) {
if (widget.selectedFiles.files.isNotEmpty) {
return const SizedBox.shrink();
} else {
return Padding(
padding: const EdgeInsets.only(bottom: 8.0),
child: ClipRRect(
bool filesAreSelected = widget.selectedFiles.files.isNotEmpty;
return AnimatedContainer(
duration: Duration(milliseconds: 200),
curve: Curves.easeInOut,
height: filesAreSelected ? 0 : 52,
child: AnimatedOpacity(
duration: Duration(milliseconds: 75),
opacity: filesAreSelected ? 0.0 : 1.0,
curve: Curves.easeIn,
child: IgnorePointer(
ignoring: filesAreSelected,
child: ListView(
physics: const NeverScrollableScrollPhysics(),
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ClipRRect(
borderRadius: BorderRadius.circular(36),
child: Container(
alignment: Alignment.bottomCenter,
@ -558,10 +577,12 @@ class _HomeBottomNavigationBarState extends State<HomeBottomNavigationBar> {
width: 240,
child: ClipRect(
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 4, sigmaY: 4),
filter: ImageFilter.blur(sigmaX: 20, sigmaY: 20),
child: GNav(
curve: Curves.easeOutExpo,
backgroundColor: Theme.of(context).bottomAppBarColor,
// backgroundColor: Colors.white.withOpacity(0.6),
backgroundColor:
Theme.of(context).bottomAppBarColor,
mainAxisAlignment: MainAxisAlignment.center,
rippleColor: Colors.white.withOpacity(0.2),
hoverColor: Colors.white.withOpacity(0.2),
@ -622,10 +643,14 @@ class _HomeBottomNavigationBarState extends State<HomeBottomNavigationBar> {
),
),
),
],
),
]),
),
),
);
}
}
}
class HeaderWidget extends StatelessWidget {
static const _memoriesWidget = MemoriesWidget();