Christof Zirkler
Christof Zirkler
Hi @twinssbc, any chance we can get this as an configuration options?

@nuhkoca Thanks for your response. Your code brings back the header, but I only want the view below to be scrolled on top. Any idea on this?
Same issue here.
We would really appreciate a dedicated wiki article on the EditText handling. Or maybe share with us how you are handling it in the Airbnb App.
So what I have is a TextWatcher in my ModelView class, which calls a Callback (which is set via a @CallbackProp annotated setter) whenever the text changes. Works so far,...
Thanks a lot for your answer, in fact I am using MvRx, great pleasure to work with it. I just found out my issue was caused by the mutability of...
@vnwarrior I felt the very same, but in the end, it's pretty simple. I will put together an example repository which demonstrates how to build forms with Epoxy and MvRx.
Please find my example project here: https://github.com/zirkler/mvrx_epoxy_form_exmaple The TextInput Cell/Row: https://github.com/zirkler/mvrx_epoxy_form_exmaple/blob/dev/app/src/main/java/com/zirkler/mvrxepoxyformexample/cells/VLTextInputCell.kt The form Fragment: https://github.com/zirkler/mvrx_epoxy_form_exmaple/blob/dev/app/src/main/java/com/zirkler/mvrxepoxyformexample/DemoForm/DemoFormFragment.kt Corresponding ViewModel: https://github.com/zirkler/mvrx_epoxy_form_exmaple/blob/dev/app/src/main/java/com/zirkler/mvrxepoxyformexample/DemoForm/DemoFormViewModel.kt