Reputation: 4987
How to make the fixed bottom view in flutter like below example (it is don with android java,xml)
Upvotes: 0
Views: 1407
Reputation: 47119
You can achieve it by below widget tree, I will give you basic Idea.
- Container
- Column
- Expanded(ListView)
- Container - Height: 50, Width: MediaQuery.of(context).size.width,
- Row (Your children widgets)
Upvotes: 5