赞
踩
我的Container内放了四个字,但是背景需要撑满父组件,设置高度没法做适配,最后发现了通过alignment可以实现撑满父组件
alignment:Alignment.centerLeft,
Container( alignment:Alignment.centerLeft, decoration:BoxDecoration( gradient:LinearGradient( begin:Alignment.centerLeft, end:Alignment.centerRight, colors:[ Colors.blue, Color.fromRGBO(174, 206, 250, 1.0), ], ), ), child:Expanded( child:Text('专业列表'), ), ),
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。