mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
Server detail page cards support sorting
This commit is contained in:
@@ -8,8 +8,13 @@ class VirtualKey {
|
||||
final IconData? icon;
|
||||
final VirtualKeyFunc? func;
|
||||
|
||||
VirtualKey(this.text,
|
||||
{this.key, this.toggleable = false, this.icon, this.func,});
|
||||
VirtualKey(
|
||||
this.text, {
|
||||
this.key,
|
||||
this.toggleable = false,
|
||||
this.icon,
|
||||
this.func,
|
||||
});
|
||||
}
|
||||
|
||||
enum VirtualKeyFunc { toggleIME, backspace, copy, paste, snippet }
|
||||
|
||||
Reference in New Issue
Block a user