Become a member
Sign in
서기웅
서기웅

서기웅

4 Following
1 Followers
·
  • Profile
  • Claps
  • Highlights

Highlighted by 서기웅

See more

From Lifecycle Aware Data Loading with Android Architecture Components by Ian Lake

…elProviders.of(this).get(JsonViewModel.class);
model.getData().observe(this, data -> {
// update UI
});
}
}

From Playing with Kotlin in Android: coroutines and how to get rid of the callback hell by Andrea Bresolin

…ry {
val useCaseResult = myUseCase.execute(...params...)
myProcessingMethod(useCaseResult)
} catch (e: MyException) {
...deal with the exception...
}
}
}

Claps from 서기웅

See more

View Model Creation in Android — Android Architecture Components & Kotlin

Felipe Magalhães