Hugo Passos

Results 12 comments of Hugo Passos

@rrousselGit > The problem is, people will most likely want to initialize some parameters based on other parameters I understand your concern, but I feel like it's a way to...

@aloisdeniel If we got to that point, why not creating a dummy private constructor and a second one with body, which allows us to define a default value? ```dart const...

@aloisdeniel > Yes absolutely, it is another valid solution, but I wanted to keep the const behaviour. :) I'm not sure I understand. Do you want a const constructor with...

@paolovalerdi Thanks! I'll definitely check that out.

Very interesting approach. My considerations: * There are methods that mutate the state but are not impacted by the described issue. Those are: `clear()`, `undo()`, `redo()`. They will remain inside...

Ahh, hard to find a good name for that. I think I'll let you think of something better and, if after that the mutator still exists, then we think of...

Such feature is not supported yet, but we can work around that by undoing any changes that lead to selecting above the limit. Please take this example: ```dart class MyApp...

sorry for the late response. i accidentally disabled my email notifications. are you placing `DoubleBackToCloseApp` in your root route? if so, we may have a bug, because `DoubleBackToCloseApp` should not...

i'm not sure i understand the expected behavior. do you want the back button to switch between the tabs instead of closing the app?

if only one tab can be active at a time, why should we check which one is active? i believe i may be either not understanding your problem or this...