I want to make a rounded container search bar that opens a drawer similar to in the Google Chats app (see screenshot). Not sure how to make the floating app bar and rounded borders for the AppBar.
Here is a screenshot of what I would like it to look like. The menu will open a drawer.
You can create your own custom AppBar.
Create a TextField with rounded borders and use prefix and suffix icons, prefixIcon for menu and suffixIcon for the avatar.
3
Answers
You can create your own custom
AppBar
.Create a
TextField
with rounded borders and use prefix and suffix icons,prefixIcon
for menu andsuffixIcon
for the avatar.To open the drawer, use this:
you can create custom AppBar in flutter with implementing PreferedSizedWidget like below:
And use it in your Scaffold Like this:
This is the result:
Try below code
Key:
UI:
Drawer UI:
Result: