Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/add draggable property cupertino sheet route #357

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions sheet/lib/src/route/cupertino/sheet_route.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,16 @@ class _CupertinoSheetDecorationBuilder extends StatelessWidget {
///
/// * [CupertinoSheetPage], which is the [Page] version of this class
class CupertinoSheetRoute<T> extends SheetRoute<T> {
CupertinoSheetRoute(
{required WidgetBuilder builder,
List<double>? stops,
double initialStop = 1,
RouteSettings? settings,
Color? backgroundColor,
bool maintainState = true,
super.fit})
: super(
CupertinoSheetRoute({
required WidgetBuilder builder,
List<double>? stops,
double initialStop = 1,
RouteSettings? settings,
Color? backgroundColor,
bool maintainState = true,
super.fit,
super.draggable = true,
}) : super(
builder: (BuildContext context) {
return _CupertinoSheetDecorationBuilder(
child: Builder(builder: builder),
Expand All @@ -116,9 +117,6 @@ class CupertinoSheetRoute<T> extends SheetRoute<T> {
maintainState: maintainState,
);

@override
bool get draggable => true;

final SheetController _sheetController = SheetController();

@override
Expand Down