replace base64 regex string (#1919)

* replace base64 regex string

* replace base64RegExp String due to app crash in release mode, throws stack overflow error

---------

Co-authored-by: SalmanAhmed <salman.ahmed@digicopsolutions.com>
pull/1924/head v9.4.1
Salman Ahmed 10 months ago committed by GitHub
parent 85182333b1
commit 082cea9e6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      flutter_quill_extensions/lib/utils/patterns.dart

@ -1,5 +1,5 @@
RegExp base64RegExp = RegExp(
r'^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=|[A-Za-z0-9+\/]{4})$',
r'^(?:[A-Za-z0-9+\/][A-Za-z0-9+\/][A-Za-z0-9+\/][A-Za-z0-9+\/])*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=|[A-Za-z0-9+\/]{4})$',
);
final imageRegExp = RegExp(

Loading…
Cancel
Save