S.
04/24/2022, 7:06 PMDropdownMenu
when it contains a lot of items while LazyColumn
with the same amount of items works just fine. It doesn't lag while scrolling but it takes ages to show up and update it's content.
is this a known issue and dropdowns are simply not cut out for >100 items or is the problem rather in my code?mcpiroman
04/25/2022, 8:24 AMText
• use `BasicText`instead of `TextField`and replace it temporarily with TextField
when clicked
• cache `Icon`s with `ImageBitmap`s
• use as little `CompositionLocal`s as possible
• use proguard (mainly to remove `sourceInformation*`calls)
• replace compose-runtime module with custom one from upstream androidx composeS.
04/25/2022, 2:32 PMPopup
- LazyColumn
implementation for now.