v1.0.0drag_down_to_pop
드래그 다운하여 뒤로 가기 기능을 지원하는 페이지 전환.
29좋아요 10330일 다운로드140Pub 점수
AndroidiOSWebmacOSWindowsLinux
드래그 다운하여 뒤로 가기 기능을 지원하는 페이지 전환.
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A page transition which supports drag-down-to-pop gesture. The main source code is copied from the cupertino/route.dart in Flutter SDK with some modifications.
https://github.com/nekocode/drag-down-to-pop-flutter/blob/master/image/preview.gif?raw=true
Create a new PageRoute to use this page transiaction.
import 'package:drag_down_to_pop/drag_down_to_pop.dart';
class ImageViewerPageRoute extends MaterialPageRoute {
ImageViewerPageRoute({@required WidgetBuilder builder})
: super(builder: builder);
@override
Widget buildTransitions(BuildContext context, Animation<double> animation,
Animation<double> secondaryAnimation, Widget child) {
return const DragDownToPopPageTransitionsBuilder()
.buildTransitions(this, context, animation, secondaryAnimation, child);
}
}
// Push to a new page using ImageViewerPageRoute
Navigator.push(
context,
ImageViewerPageRoute(builder: (context) => ImageViewerPage()),
);