Amiden
Amiden

Reputation: 49

How to create a modal bottom sheet which opens from the right side and only shows 80% of it's width

Here's how it should look like

Bottom sheet from the right side

it can be opened by clicking the icon

button

Upvotes: 2

Views: 1626

Answers (1)

Iruoy
Iruoy

Reputation: 166

You could make use of the build in Drawer widget.

Scaffold(
  endDrawer: Drawer(
    child: ...
  ),
),

Click Here for more information from Flutter.

Upvotes: 2

Related Questions