If you need to display scrolling elements dynamically, you should check if they are lists or . You can find . If you have decided that you want to create lists, this is right please to read.
An example of a list is below. In the image, the cell prototype repeats itself with different data inside.
Lists are called different names in iOS and Android. They are explained below with the code and details.
Generated code for iOS/Android and Details
TableView
Lists are called inTableView Swift language. With TableView, you can view a group that aligns all children in a single direction. InTableView, no matter how wide they are, the vertical list has only one child per row, and your list will only be the one-row height(Height of the tallest child + padding).
CellPrototypewraps a layout and will often be the container used in a layout for each item within a TableView. Let's check the generated code.
TableView is added to the page's View Controller file.
In Android lists are used with RecyclerViewandLinearLayout. The repetitive cells are CardView
With LinearLayout, you can view a group that aligns all children in a single direction. InLinearLayout, no matter how wide they are, the vertical list has only one child per row, and your list will only be the one-row height(Height of the tallest child + padding).
CardView wraps a layout and will often be the container used in a layout for each item within a RecyclerView. Let's check the generated code.