Egor Korshun

Results 20 comments of Egor Korshun

Hello. I solved the problem by overriding custom styles in `QuillEditor` ``` customStyles: DefaultStyles( sizeSmall: FontSizeType.h3.getTextStyle sizeLarge: FontSizeType.h2.getTextStyle, sizeHuge: FontSizeType.h1.getTextStyle, ), ``` and for each style apply `SizeAttribute`, like `SizeAttribute('huge')`

It's not a bug. Try to override logic of `onSubmitted` field in your `TextField` ``` void onTitleSubmitted() { _textEditorFocusNodeRequestFocus(); _quillController.moveCursorToStart(); } ```

@ellet0 , yes https://github.com/superlistapp/super_native_extensions/issues/312

is it possible to make a callback directly, the [PickMultiVisualMedia(maxImage)](https://github.com/flutter/packages/blob/main/packages/image_picker/image_picker_android/android/src/main/java/io/flutter/plugins/imagepicker/ImagePickerDelegate.java#L460) method from native android ``` open class PickMultipleVisualMedia( private val maxItems: Int = getMaxItems() ) ```

temporary solution: Add **`ndkVersion`** in the `build.gradle` https://developer.android.com/ndk But this is the wrong way! These kinds of dependencies must be specified inside the library. Please fix

> Also make sure to follow the [instructions](https://pub.dev/packages/super_clipboard#getting-started) on the plugin README Maybe you can add the necessary line from the readmi inside the library? It seems to me that...

@ellet0 , Yes, [icons](https://api.flutter.dev/flutter/material/Icons-class.html) are already very cool and can be enough. But if there's going to be an option to add svg, it's going to be a completely closed...

@ellet0 , sorry for the distraction, but can you tell me how I can make it so that several types of lists with custom icons coexist? I can override it...