テキストの背景を画面の横幅最大に設定したいのですが。。。(現在背景が青の部分です)
Container( padding: EdgeInsets.all(10), color: Colors.blueAccent, child: Text( "めもめもめも",style: TextStyle(color: Colors.black,fontSize: 20)) )
「alignment: Alignment.centerLeft」をセットすると、想定通りになりました。
Container( alignment: Alignment.centerLeft, padding: EdgeInsets.all(10), color: Colors.blueAccent, child: Text( "めもめもめも",style: TextStyle(color: Colors.black,fontSize: 20)) )
えっと。。。。なんで???