dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
536 B
17 lines
536 B
RegExp base64RegExp = RegExp( |
|
r'^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=|[A-Za-z0-9+\/]{4})$', |
|
); |
|
|
|
final imageRegExp = RegExp( |
|
r'https?://.*?\.(?:png|jpe?g|gif|bmp|webp|tiff?)', |
|
caseSensitive: false, |
|
); |
|
|
|
final videoRegExp = RegExp( |
|
r'\bhttps?://\S+\.(mp4|mov|avi|mkv|flv|wmv|webm)\b', |
|
caseSensitive: false, |
|
); |
|
final youtubeRegExp = RegExp( |
|
r'^((?:https?:)?\/\/)?((?:www|m)\.)?((?:youtube(-nocookie)?\.com|youtu.be))(\/(?:[\w\-]+\?v=|embed\/|live\/|v\/)?)([\w\-]+)(\S+)?$', |
|
caseSensitive: false, |
|
);
|
|
|