rounded_modal 1.0.0 copy "rounded_modal: ^1.0.0" to clipboard
rounded_modal: ^1.0.0 copied to clipboard

discontinued
outdated

A custom implementation of showModalBottomSheet

rounded_modal #

A custom implementation of showModalBottomSheet.

Instead of overriding the entire theme of the app (which caused problems in various parts of my app) as suggested by other solutions on "How to set rounded corners of a modal?", I decided to take a look at the implementation for showModalBottomSheet and find the problem myself.

Getting Started #

Turns out that all that was needed was wrapping the main code for the modal in a Theme widget that contains the canvasColor: Colors.transparent trick. I also made it easier to customize the radius and the background color of the modal itself.

import 'package:rounded_modal/rounded_modal.dart';

showRoundedModalBottomSheet(
   context: context,
   radius: 10.0,  // This is the default
   color: Colors.white,  // Also default
   builder: (context) => ???,
);

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

5
likes
0
pub points
71%
popularity

Publisher

unverified uploader

A custom implementation of showModalBottomSheet

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on rounded_modal