Fixed scroll to chip

Crashes when trying to scroll to hidden chip/group.
This commit is contained in:
Sad Ellie 2022-08-13 15:31:54 +03:00
parent 3ba2d1d5f6
commit 0fc7f289a6

View File

@ -128,7 +128,11 @@ private fun BasicUnitListScreen(
*/ */
viewModel.setSelectedChip(currentUnit.group) viewModel.setSelectedChip(currentUnit.group)
viewModel.loadUnitsToShow(noBrokenCurrencies) viewModel.loadUnitsToShow(noBrokenCurrencies)
chipsRowLazyListState.animateScrollToItem(uiState.shownUnitGroups.indexOf(currentUnit.group))
val groupToSelect = uiState.shownUnitGroups.indexOf(currentUnit.group)
if (groupToSelect > -1) {
chipsRowLazyListState.animateScrollToItem(groupToSelect)
}
} }
} }