lexardi
03/26/2018, 1:17 PMobject Singleton {
var isFoo: Boolean = false // this value changes
}
// Somewhere in onCreate
Observable.just(isFoo)
.subscribe({ isFoo ->
if (isFoo) {
showTabs()
} else {
hideTabs()
}
})