I want to create dynamic lists which can be scrolled on the screen. To do this in Android, we create a custom adapter extending RecyclerView.Adapter<ListItem>
, where ListItem is a class containing the content of list items extending RecyclerView.ViewHolder
.
How to make such scrollable lists in HarmonyOS?