嗨,我正在重构我们的代码
我遇到了一些问题。
Scaffold(
backgroundColor: Colors.white,
appBar: buildAppBar(context, ''),
body: ListView(
physics: ClampingScrollPhysics(),
children: [
Column(
children: [
Text(
'check up',
style: TextStyle(
fontSize: 35,
fontWeight: FontWeight.bold,
color: Colors.black,
),
),
SizedBox(height: 12),
Text(
'SachsenwaldStr. 3. 12157 Berlin',
style: TextStyle(
fontSize: 20,
color: Colors.black,
),
),
],
),
Spacer(),
buildNextButton(context),
],
),
所以需要把,buildNextButton'底部中心但是
Align(
alignment: Alignment.bottomCenter,
child: buildNextButton(context),
),
没用
还有 Spacer()
有没有什么好的方法也可以在底部对齐 buildNextButton