问问题
1009 次
1 回答
2
SingleChildScrollView
虽然不知道如何做到这一点,
尝试ListView
使用shrinkWrap: true
Container(
width: MediaQuery.of(context).size.width / 2,
height: double.infinity,
padding: const EdgeInsets.fromLTRB(100, 30, 100, 0),
child: Center(
child: ListView(
shrinkWrap: true,
children: [
LoginLayout(),
],
)
),
)
于 2020-08-29T08:31:27.153 回答