2020-11-29 20:07:46 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2022-06-05 19:36:32 +00:00
|
|
|
Function pageBuilder = (final Widget widget) => (
|
|
|
|
final BuildContext context,
|
|
|
|
final Animation<double> animation,
|
|
|
|
final Animation<double> secondaryAnimation,
|
2020-11-29 20:07:46 +00:00
|
|
|
) =>
|
|
|
|
widget;
|
|
|
|
|
|
|
|
Function transitionsBuilder = (
|
2022-06-05 19:36:32 +00:00
|
|
|
final BuildContext context,
|
|
|
|
final Animation<double> animation,
|
|
|
|
final Animation<double> secondaryAnimation,
|
|
|
|
final Widget child,
|
2022-06-09 21:13:06 +00:00
|
|
|
) =>
|
|
|
|
SlideTransition(
|
|
|
|
position: Tween<Offset>(
|
|
|
|
begin: const Offset(-1, 0),
|
|
|
|
end: Offset.zero,
|
|
|
|
).animate(animation),
|
|
|
|
child: Container(
|
|
|
|
decoration: animation.isCompleted
|
|
|
|
? null
|
|
|
|
: const BoxDecoration(
|
|
|
|
border: Border(
|
|
|
|
right: BorderSide(
|
|
|
|
color: Colors.black,
|
|
|
|
),
|
2020-11-29 20:07:46 +00:00
|
|
|
),
|
|
|
|
),
|
2022-06-09 21:13:06 +00:00
|
|
|
child: child,
|
|
|
|
),
|
|
|
|
);
|
2020-11-29 20:07:46 +00:00
|
|
|
|
|
|
|
class SlideRightRoute extends PageRouteBuilder {
|
|
|
|
SlideRightRoute(this.widget)
|
|
|
|
: super(
|
|
|
|
pageBuilder: pageBuilder(widget),
|
2021-12-06 18:31:19 +00:00
|
|
|
transitionsBuilder: transitionsBuilder as Widget Function(
|
2022-06-09 21:13:06 +00:00
|
|
|
BuildContext,
|
|
|
|
Animation<double>,
|
|
|
|
Animation<double>,
|
|
|
|
Widget,
|
|
|
|
),
|
2020-11-29 20:07:46 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
final Widget widget;
|
|
|
|
}
|