Sebas LG
Sebas LG
Great episode, thanks guys, I learned a lot of stuff about React Native 👍 One correction, at the beginning of the program Felipe said that Xamarin platform is like a...
@sockeqwe Excellent explanation 😍 One big limitation of React Native that comes from not having real concurrency is that it can't take advantage of all those fancy CPUs in our...
To help complete the picture on multiplatform SDKs, there is also Flutter from Google that compiles Dart to native, it's also inspired by React and produces Android and iOS apps:...
Fantastic program, I quite enjoyed it 👍 My suggestion would have been to split it into two shorter parts (there was a good separation of topics about half way through...
A good use case is all the custom app schemes we need to use in Android apps to pass a normal URI but making sure only our app catches the...
There is another alternative to make gRPC work on Kotlin multiplatform. It is described in this article (I'm not the author of the article): https://prog.world/how-to-use-grpc-client-in-a-kotlin-multiplatform-mobile-project/ What it says in a...
Apparently the tests don't run until somebody approve it https://github.com/InsertKoinIO/koin/actions/runs/7669634353 The last time someone run the test yesterday they failed so I took the time to rebase this branch to...
So the easiest solution from the consumer is to use _exclude block_ when you import the runtime. Like this: ``` implementation("pro.streem.pbandk:pbandk-runtime:$pbandkVersion") { // Exclude pbandk-protos to avoid conflicts with proto...
Also, the state of the button modified when `updateUserName()` is executed (`mUpdateButton.setEnabled(false)`) should be saved automatically in the Android Bundle and after rotation the button would be disabled and the...
@viraj49 instead of Subjects I would recommend to use Relays https://github.com/JakeWharton/RxRelay/