부모 레이아웃 너비 와 일치하도록 너비를 어떻게 설정할 수 있는지 알고 싶습니다.
new Container(
width: 200.0,
padding: const EdgeInsets.only(top: 16.0),
child: new RaisedButton(
child: new Text(
"Submit",
style: new TextStyle(
color: Colors.white,
)
),
colorBrightness: Brightness.dark,
onPressed: () {
_loginAttempt(context);
},
color: Colors.blue,
),
),
나는 Expanded
위젯 에 대해 조금 알고 있지만 Expanded
두 방향으로보기를 확장합니다. 어떻게 해야할지 모르겠습니다.