File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
wox.ui.flutter/wox/lib/components Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ import 'package:wox/enums/wox_image_type_enum.dart';
1212import 'package:wox/utils/colors.dart' ;
1313import 'package:get/get.dart' ;
1414
15+ class EmojiGroupData {
16+ final String labelKey;
17+ final IconData icon;
18+ final List <String > emojis;
19+
20+ const EmojiGroupData ({required this .labelKey, required this .icon, required this .emojis});
21+ }
22+
1523class WoxImageSelector extends StatelessWidget {
1624 final WoxImage value;
1725 final ValueChanged <WoxImage > onChanged;
@@ -493,14 +501,6 @@ class WoxImageSelector extends StatelessWidget {
493501 }
494502}
495503
496- class EmojiGroupData {
497- final String labelKey;
498- final IconData icon;
499- final List <String > emojis;
500-
501- const EmojiGroupData ({required this .labelKey, required this .icon, required this .emojis});
502- }
503-
504504class EmojiPickerDialog extends StatefulWidget {
505505 final String ? initialEmoji;
506506 final String Function (String ) tr;
You can’t perform that action at this time.
0 commit comments