mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 09:53:12 +00:00
45 lines
1 KiB
Dart
45 lines
1 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
Function pageBuilder = (Widget widget) => (
|
||
|
BuildContext context,
|
||
|
Animation<double> animation,
|
||
|
Animation<double> secondaryAnimation,
|
||
|
) =>
|
||
|
widget;
|
||
|
|
||
|
Function transitionsBuilder = (
|
||
|
BuildContext context,
|
||
|
Animation<double> animation,
|
||
|
Animation<double> secondaryAnimation,
|
||
|
Widget child,
|
||
|
) {
|
||
|
return SlideTransition(
|
||
|
position: Tween<Offset>(
|
||
|
begin: const Offset(-1, 0),
|
||
|
end: Offset.zero,
|
||
|
).animate(animation),
|
||
|
child: Container(
|
||
|
decoration: animation.isCompleted
|
||
|
? null
|
||
|
: BoxDecoration(
|
||
|
border: Border(
|
||
|
right: BorderSide(
|
||
|
color: Colors.black,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
child: child,
|
||
|
),
|
||
|
);
|
||
|
};
|
||
|
|
||
|
class SlideRightRoute extends PageRouteBuilder {
|
||
|
SlideRightRoute(this.widget)
|
||
|
: super(
|
||
|
pageBuilder: pageBuilder(widget),
|
||
|
transitionsBuilder: transitionsBuilder,
|
||
|
);
|
||
|
|
||
|
final Widget widget;
|
||
|
}
|