修改选择器样式

This commit is contained in:
czz
2025-06-07 11:44:09 +08:00
parent 36a5b098d5
commit 77152e5d81
16 changed files with 503 additions and 260 deletions

View File

@@ -224,11 +224,11 @@ Future showDateSelectionDialog(BuildContext context,
),
SizedBox(
height: 240.rpx,
child: Row(
children: [
Expanded(
child: Padding(
padding: EdgeInsets.only(right: 30.rpx),
child: Padding(
padding: EdgeInsets.symmetric(horizontal: 95.rpx),
child: Row(
children: [
Expanded(
child: getOnePickers(
context,
years,
@@ -237,11 +237,7 @@ Future showDateSelectionDialog(BuildContext context,
onChanged: (_) => updateDays(),
),
),
),
Expanded(
child: Padding(
padding: EdgeInsets.symmetric(
horizontal: 30.rpx),
Expanded(
child: getOnePickers(
context,
months,
@@ -250,10 +246,7 @@ Future showDateSelectionDialog(BuildContext context,
onChanged: (_) => updateDays(),
),
),
),
Expanded(
child: Padding(
padding: EdgeInsets.only(left: 30.rpx),
Expanded(
child: getOnePickers(
context,
daysSelect,
@@ -261,8 +254,8 @@ Future showDateSelectionDialog(BuildContext context,
unit: "",
),
),
),
],
],
),
),
),
],