develop-bloc #68

Merged
MineTec merged 22 commits from develop-bloc into develop 2024-05-12 13:12:23 +00:00
Showing only changes of commit 107a5bdbf8 - Show all commits

View File

@ -13,7 +13,9 @@ class ErrorBar extends StatelessWidget {
@override
Widget build(BuildContext context) => ControllerProvider<ErrorBarController>(
create: (context) => ErrorBarController(),
child: (context) => AnimatedSwitcher(
child: (context) => AnimatedSize(
duration: animationDuration,
child: AnimatedSwitcher(
duration: animationDuration,
transitionBuilder: (Widget child, Animation<double> animation) => SlideTransition(
position: Tween<Offset>(
@ -50,5 +52,6 @@ class ErrorBar extends StatelessWidget {
)
)
),
),
);
}