cedvdb
cedvdb
I find dart constructors initializer list often hinder readability and needlessly redundant when trying to have private members. They are also [sometimes annoying to read in public api scenarios](https://github.com/dart-lang/language/issues/1613) I...
Clickable elements should display with a `SystemMouseCursor.click` for desktop platform like the web.
The back button should be disabled if the previous month is unreachable. Same for the next month.
Saudi Arabia text seems to be wrong ? That's an issue that was filed on my lib that use this. I cannot verify this claim as I don't speak arabic
You need to make the class `LevelMessages` visible in the public api. It would also be better if the logging dependency was removed altogether and instead an onEvent callback could...
The current serialization uses `toIso8601String`, which results in different behavior from the web and other platforms since the web does not have micro seconds informations. so on the web you...
trying to `build:prod` this package I'm hit with the error: `[!] Error: Could not resolve '../assembly' from src/accelerated.ts` Any help ?
I'm not sure if this feature should be included in beamer but I think it's worth discussing. As of today guards work by allowing or disallowing access to a page...
I'll refer to[ this comment](https://github.com/dart-lang/language/issues/357#issuecomment-923094819) to explain the issue: > I always have to dig into the `borderRadius` documentation to remember what I need to put in the `BoxDecoration` parameters...
``` void main(List arguments) { BehaviorSubject controller = BehaviorSubject.seeded(3, sync: true); final mapped = controller.stream.map((v) => v * 2).shareValue(); mapped.listen((_) {}); print(mapped.value); } ``` value stream should have a value...