awesome_side_sheet 0.0.1 awesome_side_sheet: ^0.0.1 copied to clipboard
| A Flutter package for displaying a modal side sheet, following the Material Design 3 specification. This package provides a customizable side sheet with a title, body, and optional header and footer [...]
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add awesome_side_sheet
With Flutter:
$ flutter pub add awesome_side_sheet
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
awesome_side_sheet: ^0.0.1
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:awesome_side_sheet/Enums/sheet_position.dart';
import 'package:awesome_side_sheet/Widgets/build_button.dart';
import 'package:awesome_side_sheet/Widgets/build_footer.dart';
import 'package:awesome_side_sheet/Widgets/build_header.dart';
import 'package:awesome_side_sheet/build_side_sheet.dart';
import 'package:awesome_side_sheet/side_sheet.dart';