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);
|
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"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
path: "."
|
path: "."
|
||||||
ref: "v1.0.361"
|
ref: "v1.0.362"
|
||||||
resolved-ref: "9905808dc033e0e626c792a895f80fb755d2eb03"
|
resolved-ref: "3c75cfe1f07ee664a912d330e2a38bda51bee8d9"
|
||||||
url: "https://github.com/lppcg/fl_lib"
|
url: "https://github.com/lollipopkit/fl_lib"
|
||||||
source: git
|
source: git
|
||||||
version: "0.0.1"
|
version: "0.0.1"
|
||||||
flutter:
|
flutter:
|
||||||
|
|||||||
@@ -65,8 +65,8 @@ dependencies:
|
|||||||
ref: v1.0.23
|
ref: v1.0.23
|
||||||
fl_lib:
|
fl_lib:
|
||||||
git:
|
git:
|
||||||
url: https://github.com/lppcg/fl_lib
|
url: https://github.com/lollipopkit/fl_lib
|
||||||
ref: v1.0.361
|
ref: v1.0.362
|
||||||
|
|
||||||
dependency_overrides:
|
dependency_overrides:
|
||||||
# webdav_client_plus:
|
# webdav_client_plus:
|
||||||
|
|||||||
Reference in New Issue
Block a user