mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2026-01-31 05:14:56 +01:00
fix: Update dependencies and add a cancel button to the color selection dialog (#1025)
Update the fl_lib dependency to version v1.0.362 Add a cancel button in the color selection dialog to enhance user experience
This commit is contained in:
@@ -134,7 +134,10 @@ extension _App on _AppSettingsPageState {
|
||||
return Column(mainAxisSize: MainAxisSize.min, children: children);
|
||||
},
|
||||
),
|
||||
actions: Btn.ok(onTap: () => _onSaveColor(ctrl.text)).toList,
|
||||
actions: [
|
||||
Btn.cancel(onTap: () => context.pop(false)),
|
||||
Btn.ok(onTap: () => _onSaveColor(ctrl.text)),
|
||||
],
|
||||
);
|
||||
});
|
||||
},
|
||||
|
||||
@@ -497,9 +497,9 @@ packages:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
path: "."
|
||||
ref: "v1.0.361"
|
||||
resolved-ref: "9905808dc033e0e626c792a895f80fb755d2eb03"
|
||||
url: "https://github.com/lppcg/fl_lib"
|
||||
ref: "v1.0.362"
|
||||
resolved-ref: "3c75cfe1f07ee664a912d330e2a38bda51bee8d9"
|
||||
url: "https://github.com/lollipopkit/fl_lib"
|
||||
source: git
|
||||
version: "0.0.1"
|
||||
flutter:
|
||||
|
||||
@@ -65,8 +65,8 @@ dependencies:
|
||||
ref: v1.0.23
|
||||
fl_lib:
|
||||
git:
|
||||
url: https://github.com/lppcg/fl_lib
|
||||
ref: v1.0.361
|
||||
url: https://github.com/lollipopkit/fl_lib
|
||||
ref: v1.0.362
|
||||
|
||||
dependency_overrides:
|
||||
# webdav_client_plus:
|
||||
|
||||
Reference in New Issue
Block a user