Initial commit

This commit is contained in:
admin1
2026-07-14 11:11:36 +08:00
commit 656499cf94
604 changed files with 119518 additions and 0 deletions
@@ -0,0 +1,27 @@
class SelectionPanelEntry<T> {
final T? value;
final String? label;
final String? subtitle;
final String? badge;
final bool isActive;
final bool isLoading;
final bool isDivider;
const SelectionPanelEntry.item({
required T this.value,
required String this.label,
this.subtitle,
this.badge,
this.isActive = false,
this.isLoading = false,
}) : isDivider = false;
const SelectionPanelEntry.divider()
: value = null,
label = null,
subtitle = null,
badge = null,
isActive = false,
isLoading = false,
isDivider = true;
}