Andrew

Results 14 comments of Andrew

Another question is why to completely delegate header appending to an engine. Is it feasible to keep the header by default, and let any engine override/remove it if necessary?

@rsinukov in my case, a test with MockEngine that verifies Content-Type header was failing. As you stated.

> the experimental motionEventSpy worked like a charm: > > ``` > var columnScrollingEnabled: Boolean by remember { mutableStateOf(true) } > > ... > > LazyColumn(userScrollEnabled = columnScrollingEnabled) > >...