Eduardo Florence

Results 88 comments of Eduardo Florence

When you use `Get.offAll` in the debug console does not show` [GETX] "NameLoginController" deleted from memory`? Isn't `updateControllersWithData()` getting the data from the previous user again?

Let's leave this issue open to implement the Decoder feature for error

https://aws.amazon.com/de/blogs/compute/coming-soon-expansion-of-aws-lambda-states-to-all-functions/

Replace: `eventID: args.params['eventID']` With: `eventID: r.args.params['eventID']`

@agustin-garcia, This correct is `Modular.to.navigate('/home_modular/')` You did it (routeInformationParser, routerDelegate) ? ```dart import 'package:flutter/material.dart'; import 'package:flutter_modular/flutter_modular.dart'; void main() { return runApp(ModularApp(module: AppModule(), child: AppWidget())); } class AppWidget extends StatelessWidget {...

>@jacobaraujo7 > Can you provide a complete example? **Flutter Standard Navigation:** ```dart import 'package:flutter/material.dart'; void main() { runApp(const AppWidget()); } class AppWidget extends StatelessWidget { const AppWidget({super.key}); @override Widget build(BuildContext...

For your scenario, ideally use [PageView](https://api.flutter.dev/flutter/widgets/PageView-class.html) with [WidgetModule](https://modular.flutterando.com.br/docs/flutter_modular/widgets#widgetmodule)

Show more parts of your code so we can reproduce the issue

Complete code to help test the issue. AuthServiceDefault is instantiated again on every import. ```dart import 'package:flutter/material.dart'; import 'package:flutter_modular/flutter_modular.dart'; void main() async { runApp(ModularApp(module: AppModule(), child: const AppWidget())); await Future.delayed(const...

Hi @guilherme-ma9, In Modular **6.3.1** the problem with `addLazySingleton` in `CoreModule` is not happening. The problem happens if we use `addSingleton`, but it's just a side effect, as the first...