yongsuk

Results 11 comments of yongsuk

I personally think that managing multiple distinct states within a single object can make Compose code less readable and harder to manage. Hmm... If I think about it simply... I...

> I could imagine a scenario where you might have multiple loading/error states on the same screen. In that case, I would prefer to use a Result in the screen...

Will values be added to the 'element' tab later, or is it normal for it to be empty. In my opinion, it would be convenient for debugging to display the...

@JoseAlcerreca RFR :)

Fixed Issue - #1337

In Android OS, differentiating between `NET_CAPABILITY_INTERNET` and `NET_CAPABILITY_VALIDATED` is designed to give developers more granular control over network connections. : [link](https://developer.android.com/develop/connectivity/network-ops/reading-network-state#introducing-net-capabilities) - `NET_CAPABILITY_INTERNET` is used to check if the current...

@loke101 If you're asking about how to check if Wi-Fi is connected but not actually connected to the internet, I think I would handle it like this: ```kotlin NetworkRequest.Builder() .addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)...

Personally, umm... I'm not sure why `flowOn` needs to be added in the Repository and UseCase. I think that specifying a dispatcher in the coroutine builder would make thread management...

> I think that specifying a dispatcher in the coroutine builder would make thread management and tracking easier. @Jaehwa-Noh 😀 This comment was left because I think that handling thread...

There is no need to worry about ANR as long as the thread is not blocked when working on `Dispatchers.Main`. Most functions in our current project are designed as suspend...