Midhilaj
Midhilaj

Reputation: 4987

How to make bottom fixed view in flutter

How to make the fixed bottom view in flutter like below example (it is don with android java,xml) flutter bottom fixed layout

Upvotes: 0

Views: 1407

Answers (1)

iPatel
iPatel

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

Related Questions