Skip to content

machinescream/perfect_bottom_sheet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Navigator.of(context).push(
            PerfectBottomSheetRoute(
              builder: (context, controller) {
                return Material(
                  color: Colors.transparent,
                  child: ListView(
                    padding: EdgeInsets.only(
                      bottom: MediaQuery.of(context).padding.bottom,
                      top: 20,
                    ),
                    controller: controller,
                    children: List.generate(
                      30,
                      (index) => Text("$index"),
                    ),
                  ),
                );
              },
            ),
          );

About

Just perfect bottom sheet for flutter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published