RxDatabindings Save

RxJava2 & 3 extensions for Android Databindings library

Project README

RxDatabindings

Download Android CI

RxJava 2 & 3 extensions for Android Databindings library

Add RxDataBindings to your build.gradle

implementation "com.stepango.rxdatabindings:rxdatabindings:3.0.0"

Basic example of usage:

interface ViewModelState : Parcelable {
    val text: ObservableString
    val counter: ObservableInt
}

@Parcelize
data class ViewModelStateImpl(
        override val text: ObservableString = ObservableString(),
        override val counter: ObservableInt = ObservableInt()
) : ViewModelState

class ViewModel(val state: ViewModelState) : ViewModelState by state {

    init {
        counter.observe()
                .setTo(text) { "Wow! You count till $it" }
                .doOnNext { Log.d("THREAD", Thread.currentThread().name) }
                .subscribe()
    }

    fun incCounter() = counter.inc(10)
    fun decCounter() = counter.dec(0)

}
Open Source Agenda is not affiliated with "RxDatabindings" Project. README Source: stepango/RxDatabindings
Stars
42
Open Issues
3
Last Commit
4 years ago

Open Source Agenda Badge

Open Source Agenda Rating