SafeArea(
child: Padding(
padding: const EdgeInsets.all(16).copyWith(
bottom: 0,
),
child: Column(
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
...
],
),
// 下面的内容是可滑动的
Expanded(
child: SingleChildScrollView(
child: Center(
child: Column(
children: const [
...
],
),
),
),
),
],
),
),
)
网友评论