Dale King
Dale King
I would like to see allowing PopupRoutes which lets you do named navigation to show a dialog like an error message.
I'm actually coming from KoTest which let's you use methods like those but also let's you say ``` a shouldBe b```
So I discovered that error message I reported is actually coming from another plugin, but due to this plugin not applying. The relevant part of the stack trace is: ```...
So I have determined that if I include gordon using `buildscript.dependencies.classpath` entry in my top level build.gradle.kts file, then it works. If I try to instead specify the version in...
It isn't as problematic as it would be in Java where you don't have implicit interfaces, but any time you can reduce dependencies it is a good thing. I am...
For reference, here is how I worked around it by creating this wrapper: ``` import androidx.compose.foundation.layout.PaddingValues import androidx.compose.runtime.Composable import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.semantics.SemanticsPropertyKey import androidx.compose.ui.semantics.SemanticsPropertyReceiver import androidx.compose.ui.semantics.semantics import androidx.compose.ui.unit.Dp...
I swear that what is in the examples is what I tried but could not make it work. Owl have to look at it again next week.
Finally got around to looking at this and find that what you have in place is not sufficient. What you are suggesting is to add a tag to the refresh...
I too thought we were getting this as part of #194
There are a number of solutions discussed [here](https://stackoverflow.com/questions/68009392/dart-custom-copywith-method-with-nullable-properties). The basic idea is provide some optional-like wrapper class that must be used for nullable properties. Alternatively, you could provide additional methods...