mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-09 21:49:31 +01:00
36 lines
1.0 KiB
Dart
36 lines
1.0 KiB
Dart
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class AppRoute extends PageRouteBuilder {
|
|
static Route defaultRoute(BuildContext context, Widget page) {
|
|
return context != null &&
|
|
!AdaptivePageLayout.of(context).columnMode(context)
|
|
? CupertinoPageRoute(
|
|
builder: (BuildContext context) => page,
|
|
)
|
|
: AppRoute(page);
|
|
}
|
|
|
|
final Widget page;
|
|
AppRoute(this.page)
|
|
: super(
|
|
pageBuilder: (
|
|
BuildContext context,
|
|
Animation<double> animation,
|
|
Animation<double> secondaryAnimation,
|
|
) =>
|
|
page,
|
|
transitionsBuilder: (
|
|
BuildContext context,
|
|
Animation<double> animation,
|
|
Animation<double> secondaryAnimation,
|
|
Widget child,
|
|
) =>
|
|
FadeTransition(
|
|
opacity: animation,
|
|
child: child,
|
|
),
|
|
);
|
|
}
|