Julsapargi Nursam
Julsapargi Nursam
@glebkravchenko @thegarlynch Make sure not to access the view before onCreateView and after onDestroyView. If you use Flow, you can read this [article](https://medium.com/androiddevelopers/a-safer-way-to-collect-flows-from-android-uis-23080b1f8bda) I experienced the same thing after I...
@goth4m solved issue
Thank you for the information, @rocketraman . I tried doing the same, and it worked well in my project.
How do I start using Start Koin in commonMain? I always encounter errors when AndroidComponent injects Context.
I'm facing an issue with **Unit Test**. In the **Repository (commonMain)**, there's an access to **expect getPlatform**, where there's a **KoinComponent** accessing Context. When I run the unit test, I...
You can use Nested Navigator, as mentioned in this issue: https://github.com/adrielcafe/voyager/issues/204. To get the root, I implemented it like this: ``` fun findRootNavigator( currentNavigator: Navigator, depth: Int ): Navigator {...