From ad00cf5748370b2905bcf3574b97d7efafcd0e6c Mon Sep 17 00:00:00 2001 From: Stefan Schaller Date: Fri, 8 Mar 2024 09:44:19 +0100 Subject: [PATCH] fix linter feedback --- example/lib/main.dart | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/example/lib/main.dart b/example/lib/main.dart index 24d6dcf..9a3fb5a 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -19,17 +19,15 @@ class MainApp extends StatelessWidget { body: Stack( children: [ Positioned.fill( - child: Container( - color: Colors.green, - )), + child: Container( + color: Colors.green, + ), + ), Align( alignment: Alignment.bottomCenter, child: ScrollableBottomSheet( snapPositions: [maxHeight / 2], initialPosition: maxHeight / 2, - onSizeChanged: (tween,height) { - print(tween); - }, maxHeight: maxHeight, minHeight: 100, builder: (context, scrollController) {