Jake Wharton
Jake Wharton
Been thinking about this a bit and bouncing ideas off of folks. I think we want two APIs: - A `Turbine`-like harness which allows pulling frames which (by default) omit...
Another feature that might be interesting is rendering spaces with a middot (·). Probably better to fix rendering so we omit trailing spaces altogether though...
Yeah I wrote it as an EP check because it only makes sense for Java and no one uses lint outside of Android despite being available.
Hmm I would have thought this would have been handled automatically by error-prone itself. Each check shouldn't need to do anything here. I will try to reproduce, but I'm on...
On vacation this week. Will look at these soon.
I don't use fragments, but I understand the requirement. ButterKnife has `reset(Object)` for this purpose.
Today: ```kotlin fun main() = runMosaic { val countValue = mutableStateOf(0) setContent { val count by remember { countValue } Text("The count is: $count") } for (i in 1..20) {...
I was doing some Compose UI for Desktop recently, and it seems like they support this internally. Need to investigate.
Done in #284
Will have to look when I'm at a computer (on paternity leave until New Year). Regarding, > For jest, it seems that it would be cool to have a `MosaicScope`...