Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MarcinHradowicz/35d01dcbc76e7d90222ac357440f9b09 to your computer and use it in GitHub Desktop.
Save MarcinHradowicz/35d01dcbc76e7d90222ac357440f9b09 to your computer and use it in GitHub Desktop.
Constructor of ImprovedDraggableScrollableSheet
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