Hoàng Sang
Hoàng Sang
In `QuillToolbar > QuillToolbarImageButton`, you can update regex of the link for all cases that you know 
Sorry, my mistake. You can update linkPrefixes at here.  ```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:  Result: 
@antrusha0223 I can't reproduce your error
@EgorK0rshun Fixed on #1373
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...