Can we have a fix for base64 regular expression ? #1691
Unanswered
yogesharora388
asked this question in
Desktop
Replies: 2 comments 4 replies
-
I am not able to show base64 image in release mode. Screen is greying out |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, can you explain why this is a fix? also it might be helpful to send a PR since it was your idea even though I can do it on my own but I just need more info |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It should be
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})$'
instead of r'^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$'
FilePath: /flutter_quill_extensions-9.2.6/lib/utils/patterns.dart
Beta Was this translation helpful? Give feedback.
All reactions