JWvanV

Results 4 comments of JWvanV

I Checked it by changing `mDialogView.getChildAt(0).setPadding(0, 0, 0, helper.mNavBarAvailable ? helper.getNavigationBarHeight(getContext()) + mDialogView.getPaddingBottom() : 0);` to `mDialogView.getChildAt(0).setPadding(0, 0, 0, ActivityUtils.getNavigationBarHeight(getContext(), false));` at BottomSheet.java:198. This fixed the issue for me :D...

Pull request filed :D

I also encountered this issue recently in `io.mockk:mockk:1.13.5`: ``` abstract class StateHolder(defaultState: S) { private val mutableState = MutableStateFlow(defaultState) val stateFlow = mutableState.asStateFlow() val currentState: S get() = mutableState.value }...

Awesome!! Really looking forward to V2. I also have a suggestion of the result recipient lambda, but I'll create a new issue for that :)