选择小区按钮不可见

master
戴余标 3 years ago
parent 46d7348743
commit 70251be997

@ -42,9 +42,11 @@ class BeePickerBox extends StatelessWidget {
SizedBox( SizedBox(
height: 88.w, height: 88.w,
child: NavigationToolbar( child: NavigationToolbar(
leading: _buildButton( leading: TextButton(
title: '取消',
onPressed: () => Navigator.pop(context), onPressed: () => Navigator.pop(context),
child: Text(
'取消',
),
), ),
middle: Text( middle: Text(
title ?? '', title ?? '',
@ -53,9 +55,11 @@ class BeePickerBox extends StatelessWidget {
fontSize: 28.sp, fontSize: 28.sp,
), ),
), ),
trailing: _buildButton( trailing: TextButton(
title: confirmString,
onPressed: onPressed, onPressed: onPressed,
child: Text(
'${confirmString}',
),
), ),
), ),
), ),

@ -618,13 +618,6 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.12.11" version: "0.12.11"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.3"
meta: meta:
dependency: transitive dependency: transitive
description: description:
@ -965,7 +958,7 @@ packages:
name: test_api name: test_api
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.4.8" version: "0.4.3"
time: time:
dependency: transitive dependency: transitive
description: description:

Loading…
Cancel
Save