Hoàng Sang

Results 20 comments of Hoàng Sang

In `QuillToolbar > QuillToolbarImageButton`, you can update regex of the link for all cases that you know ![image](https://github.com/singerdmx/flutter-quill/assets/56586682/ff34dc7e-c4d6-4e65-971f-e77b5b8048a9)

Sorry, my mistake. You can update linkPrefixes at here. ![image](https://github.com/singerdmx/flutter-quill/assets/56586682/cc6d194f-5ea2-478b-ba7d-269e9bc3313e) ```dart // this is default const linkPrefixes = [ 'mailto:', // email 'tel:', // telephone 'sms:', // SMS 'callto:', 'wtai:',...

You can `fork`, `update` and make a PR

Basically, before, the package supported regex determination, but no one really made a regex to support a text like `google.com`. You know what? Because of typographical errors, a lot of...

@EgorK0rshun As a temporary solution, you can update the code like the below: Code: ![image](https://github.com/singerdmx/flutter-quill/assets/56586682/89867b14-2b41-4860-b92c-2f58b06b01a2) Result: ![image](https://github.com/singerdmx/flutter-quill/assets/56586682/89f64a95-718d-4a59-8d9a-fdbc83c8e6e1)

@antrusha0223 I can't reproduce your error

The caret is not showing but you can add a space. Please try again

@marcglasberg below is code to reproduce ```dart import 'package:flutter/material.dart'; import 'package:themed/themed.dart'; /// This example demonstrates: /// 1) The [Themed] package is compatible with [Theme] and [ThemeData]. /// 2) We can...

There is no logic in closing the controller. You need to wrap the view by GetBuilder or GetX like that ```dart class Bview extends GetView { const Bview({super.key}); @override Widget...