mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Fix all warnings
This commit is contained in:
@ -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++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user