Eduardo Florence

Results 88 comments of Eduardo Florence

Please, we need a minimum code to be placed here so that we can check the error (main + module + widgets). I can say that I work with version...

Não existe ainda no Flutter Web a funcionalidade de hot reload, somente hot restart mantendo apenas a url, logo você perde todo o seu estado. Esta é grande diferença entre...

Eu vi o repositório acima @joceljunior. Na Web isso sempre vai dar erro, não é culpa do Modular, como lhe expliquei no meu comentário anterior. Nem é correto voltar para...

See https://docs.flutter.dev/development/ui/navigation#web-support

This had to be done, because GetX is being prepared to be NullSafety

See https://github.com/hnvn/flutter_image_cropper/issues/432#issuecomment-1696656900

1) To receive arguments from a route you must use async / await: ```dart () async { final result = await Get.toNamed('/somePage'); print(result); } ``` 2) The error is probably...

Instead of async/wait you can also use `then()`: ```dart Get.toNamed('/somePage').then((value) => print(value)); ```

Sorry I didn't understand your question now, could you give more details?

@saschaernst is really giving an error when doing navigation by named route when typing the return. @jonataslaw can be sure that this is a mistake. I did a study in...