我正试图减少周围的空间扩大在我的Flutter项目,因为它是采取了大量的空间在各个方向。
我有2个扩展的文本在他们和2个形式的输入从用户。他们正在采取几乎3行浪费白色。我试图减少间距尽可能通过aligning向左,但它仍然显示相同的。
我最初尝试将它们放在一个表中,但没有成功,因为我有builder在里面。下面是简化的代码:
Builder(builder: (context) {
return Container(
width: double
.infinity, // Set the width of the container to be as wide as possible
child: SingleChildScrollView(
child: Column(
children: [
Card(
child: Row(
children: [
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: const [
Text('No.'),
],
),
],
),
),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: const [
Text('No.'),
],
),
],
),
),
Expanded(
child: Column(
children: const [
Text('New Log'),
],
crossAxisAlignment: CrossAxisAlignment.start,
),
),
],
),
),
Card(
child: Row(
children: [
Expanded(
child: Column(
children: [
Text('1'),
],
),
),
Expanded(
child: Column(
children: [
Text('12'),
],
),
),
Form(
child: Expanded(
child: Column(
children: [
TextFormField(),
TextFormField(),
OutlinedButton(
onPressed: () async {},
child: _selectedButtons.contains(1)
? const Icon(FluentSystemIcons
.ic_fluent_checkmark_circle_filled)
: const Icon(FluentSystemIcons
.ic_fluent_checkmark_circle_regular),
),
],
),
),
),
],
),
),
],
),
),
);
});
以下是当前的结果:
以下是所需的结果:
我的问题:我怎样才能减少空间,在扩大,使所有在同一行。
2条答案
按热度按时间t5fffqht1#
您已经使用了太多的嵌套行和列,这是多余的。检查下面的代码与屏幕截图您想要的结果。
yc0p9oo02#
对于
TextFiled
,您需要使用Row
而不是Column
。并且可以删除单个项目的顶层嵌套小部件,如
Row>Expanded>Column
。