Guilherme Delgado

Results 72 comments of Guilherme Delgado

@nvinayshetty unfortunately I cant build this project with my **IntelliJ IDEA 2021.3.2**, it fails here: ``` intellij { plugins 'org.jetbrains.kotlin:1.3.11-release-IJ2018.3-1' version '2018.3' pluginName 'State Arts' updateSinceUntilBuild false } ``` ```...

One solution to this problem is installing Intellij's [DOT Language](https://plugins.jetbrains.com/plugin/10312-dot-language) plugin, and then update your [path](https://github.com/bzixilu/dotplugin/issues/23#issuecomment-1100512024).

Unfortunately the [orbit-swift-gradle-plugin](https://github.com/orbit-mvi/orbit-swift-gradle-plugin) is in a kind of stale state 😞 - [Update orbit-swift-gradle-plugin to Kotlin 1.6.10](https://github.com/orbit-mvi/orbit-swift-gradle-plugin/issues/3). Until it comes back to life, you can create the boilerplate code by...

I'm very interested and curious about this implementation. So far, I've tried to do it by myself but it fell short when considering both mobile platforms, even for Android I...

Adding to what I've said above, `ComponentActivity` implements `SavedStateRegistryOwner` which asks for a instance of `SavedStateRegistryController`. Therefore, inside a `ComponentActivity` we find: ``` final SavedStateRegistryController mSavedStateRegistryController = SavedStateRegistryController.create(this); @NonNull @Override...

This weekend I've updated my playground project to add state persistence in multiplatform. Based on what I've said above, the end result - from `View` to `ContainerHost`-, is: _iOS:_ ---...

Working sample: https://github.com/GuilhE/Expressus

FYI: [Effective state management for TextField in Compose](https://medium.com/androiddevelopers/effective-state-management-for-textfield-in-compose-d6e5b070fbe5) | [MutableStateFlow approach](https://twitter.com/arkann1985/status/1570722566251368448?s=20&t=WXPH3odZDVI5OaBhOgJ_QA)