Created
November 13, 2022 14:28
-
-
Save MarcinHradowicz/35d01dcbc76e7d90222ac357440f9b09 to your computer and use it in GitHub Desktop.
Constructor of ImprovedDraggableScrollableSheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ImprovedDraggableScrollableSheet extends StatefulWidget { | |
const ImprovedDraggableScrollableSheet({ | |
Key? key, | |
required this.viewPadding, | |
}) : super(key: key); | |
final EdgeInsets viewPadding; | |
@override | |
State<ImprovedDraggableScrollableSheet> createState() => _ImprovedDraggableScrollableSheetState(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment