Flutter-Expanded的使用说明 Expanded常用于Row, Column, Flex的子元素中;在使用Expanded子Widget的时候,能够填充满剩余空间。 Expanded的定义 Expanded的定义非常简单,里面只包含flex和child属性 const Expanded({ Key key, int flex = 1, @required Widget child, }) flex代表着当前Expanded的宽度(高度)占比系数; child代表着当前Expanded拥有的子Widget。 Expanded的简单实例 这里简单设置一个Con