นี่เป็นคำตอบเพิ่มเติมที่แสดงการใช้งานโซลูชันที่กล่าวถึงสองสามข้อ
FractionallySizedBox
หากคุณมีวิดเจ็ตเดียวคุณสามารถใช้FractionallySizedBox
วิดเจ็ตเพื่อระบุเปอร์เซ็นต์ของพื้นที่ว่างที่มีให้เติม ที่นี่สีเขียวContainer
ถูกตั้งค่าให้เติม 70% ของความกว้างที่มีอยู่และ 30% ของความสูงที่มีอยู่
Widget myWidget() {
return FractionallySizedBox(
widthFactor: 0.7,
heightFactor: 0.3,
child: Container(
color: Colors.green,
),
);
}
ขยาย
Expanded
เครื่องมือช่วยให้เครื่องมือที่จะเติมช่องว่างที่มีอยู่ในแนวนอนถ้ามันอยู่ในแถวในแนวตั้งหรือถ้ามันอยู่ในคอลัมน์ คุณสามารถใช้flex
คุณสมบัตินี้พร้อมกับวิดเจ็ตหลายตัวเพื่อให้น้ำหนักได้ ที่นี่สีเขียวContainer
ใช้ความกว้าง 70% และสีเหลืองContainer
ใช้เวลา 30% ของความกว้าง
หากคุณต้องการที่จะทำในแนวตั้งแล้วก็แทนที่ด้วยRow
Column
Widget myWidget() {
return Row(
children: <Widget>[
Expanded(
flex: 7,
child: Container(
color: Colors.green,
),
),
Expanded(
flex: 3,
child: Container(
color: Colors.yellow,
),
),
],
);
}
รหัสเสริม
นี่คือmain.dart
รหัสสำหรับการอ้างอิงของคุณ
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("FractionallySizedBox"),
),
body: myWidget(),
),
);
}
}
// replace with example code above
Widget myWidget() {
return ...
}