1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Fix all warnings

This commit is contained in:
2022-03-11 16:21:35 +01:00
parent 820491b09a
commit 5398970868
18 changed files with 27 additions and 22 deletions

View File

@ -58,9 +58,9 @@ class BBCodeParsedWidget extends StatelessWidget {
int? lastBeginPos = pos;
int childNumber = 0;
bool stop = false;
while (!stop && pos! < text.length) {
while (!stop && pos < text.length) {
//Go to next stop
while (!stop && pos! < text.length) {
while (!stop && pos < text.length) {
if (text[pos] == '[') break;
pos++;
}