jezsung
jezsung
``` css .quill-editor { display: flex; flex-direction: column-reverse; } ``` When it's rendered into DOM, the editor is divided into the toolbar and the container. The editor itself has `.quill-editor`...
Same here, it's obviously a bug.
What about making a guard just async function returning `Future` and exposing some navigation state via `Routemaster.of(context).state`? The navigation state could contain some useful information about the current route navigating...
Even my customer complaints on App Store review about this. It really ruins the app experience...
Does the firebase_admob package have the same issue?
@dogusdicle @kmcgill88 Ok... looks like the offical plugin firebase_admob has the same issue and I found a solution. You can disable system UI when ads are shown. ``` dart AdmobInterstitial(...
@rrousselGit Thanks for correcting me. I didn't know that I can give a custom name when destructuring class. I realized returning a `List` isn't type-safe. So I made a custom...
I found this syntax is just a new way of declaring variables and it doesn't really call the underlying setter of the `ValueNotifier`. ```dart var ValueNotifier(:value) = useState(0); // Does...