Dinar Khakimov
Dinar Khakimov
Found workaround: add `android:saveEnabled="false"` to `RecyclerView`
@hieuwu Nice work! We need to get rid of outdated MVP. What do you think about using [mvi-orbit](https://github.com/orbit-mvi/orbit-mvi)? For example you can check [FoldersViewModel](https://github.com/ARK-Builders/ARK-Navigator/blob/main/app/src/main/java/dev/arkbuilders/navigator/presentation/screen/folders/FoldersViewModel.kt) @kirillt MVP is outdated and no...
> I think, it's possible to implement them similarly to [ScoreStorage](https://github.com/ARK-Builders/arklib-android/blob/main/lib/src/main/java/dev/arkbuilders/arklib/user/score/RootScoreStorage.kt) They are not quite like `ScoreStorage`. They can often receive new events (once per second), which will provoke overwriting...
Maybe add a toggle switch between the full and short version of the tags?
I didn't quite understand what you meant by > Try wrapping it in there and setting enabled to false 🔁 code ```kotlin val reorderableLazyColumnState = rememberReorderableLazyListState(lazyListState) { from, to ->...
Ah, you mean icon button Same behavior.. ```kotlin item { Text( modifier = Modifier.padding(top = 16.dp, start = 52.dp), text = stringResource(CoreRString.quick_from), fontWeight = FontWeight.Medium, color = ArkColor.TextSecondary, ) }...
Bug still exists in versions 1.7.7, 1.8.0-beta01
Still not working If you have time can you add an example with 2 different ui items? ```kotlin val from = state.currencies.first() val to = state.currencies.drop(1) val combinedList = listOf(listOf(from),...