Lloyd Richards
Lloyd Richards
Thanks for your feedback, I will have a look later to see what making a nexus plugin will take. I definitely like the idea of being able to pass this...
 The sensor on the left is running at 15min deep sleep interval with the 60sec mode and the one on the right is running 15min deep sleep interval with...
The ESP32 and the E-Ink are part of the TTGO T5 2.3V package, which I'm using mostly to debug while not attached to Serial ports. The round shield underneath is...
Im having the same issue with trying to conditionally set the leading attribute on the AppBar. Not found any solutions but would be interested in the solution
and to make things weirder... If i use the following: ``` context.router.canPopSelfOrChildren ? BackButton( onPressed: () => context.router.pop(), ) : null, ``` then I will not get a BackButton when...
excellent! this works for the onPress, but I'm still not getting the rebuild on the AppBar when I move routes inside the tab
```dart appBarBuilder: (context, tabsRouter) { print(context.watchTabsRouter.canPopSelfOrChildren); return AppBar( title: Text(l10n.common_title_pages(context.router.current.name)), centerTitle: true, // FIXME: BackButton doesn't change when first clicked leading: context.watchRouter.canPopSelfOrChildren ? BackButton(onPressed: () => context.router.popTop()) : null, );...
but thanks for solving the piece of code I'm working on at the moment! `title: Text(l10n.common_title_pages(context.router.topRoute.name)),` 👍
very bizzare, as that not whats happening with mine. Do you have the source code to that example? maybe I'm missing something in my app.dart setup? https://user-images.githubusercontent.com/59728961/138468265-8bdb4022-6a83-4456-8dcd-f8cdb089184f.mp4
app.dart ```dart MaterialApp.router( debugShowCheckedModeBanner: false, routeInformationParser: _appRouter.defaultRouteParser(includePrefixMatches: true), routerDelegate: AutoRouterDelegate.declarative( _appRouter, navigatorObservers: () => [ FirebaseAnalyticsObserver( analytics: _analytics, nameExtractor: (route) => route.name), ], routes: (context) => [ state.when( initial: ()...