You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -32,6 +33,11 @@ class SplittedMarkdownFormField extends StatefulWidget {
32
33
/// if false, toolbar widget will not display
33
34
finalbool enableToolBar;
34
35
36
+
/// Enable Emoji options
37
+
///
38
+
/// if false, Emoji selection widget will not be displayed
39
+
finalbool showEmojiSelection;
40
+
35
41
/// Controls the text being edited.
36
42
///
37
43
/// If null, this widget will create its own [TextEditingController].
@@ -169,7 +175,7 @@ class SplittedMarkdownFormField extends StatefulWidget {
169
175
/// When a [controller] is specified, [initialValue] must be null (the default). If [controller] is null, then a [TextEditingController] will be constructed automatically and its text will be initialized to [initialValue] or the empty string.
170
176
///
171
177
/// For documentation about the various parameters, see the [TextField] class and [TextField.new], the constructor.
172
-
finalFunction(String?)? onSaved;
178
+
finalvoidFunction(String?)? onSaved;
173
179
174
180
@override
175
181
State<SplittedMarkdownFormField> createState() =>
@@ -224,6 +230,8 @@ class _SplittedMarkdownFormFieldState extends State<SplittedMarkdownFormField> {
0 commit comments