Make container widget fill parent vertically

前端 未结 6 975
天命终不由人
天命终不由人 2020-12-25 09:38

TL;DR Need the container to fill the vertical space so that it can act as a ontap listener. Have tried most solutions but nothing seems to work.

So what I am trying

6条回答
  •  梦毁少年i
    2020-12-25 10:30

    As of Jan 2020 the simplest is to use an Expanded Widget

    Expanded(flex: 1,
             child: Container(..),
                ),
    

    https://api.flutter.dev/flutter/widgets/Expanded-class.html

提交回复
热议问题