मैं जानना चाहता हूं कि मैं पैरेंट लेआउट की चौड़ाई से मेल खाने के लिए चौड़ाई कैसे सेट कर सकता हूं
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
दोनों दिशाओं के बारे में विस्तार करता हूं, मुझे नहीं पता कि यह कैसे करना है।