Tag Archives: list examples

How to create a list view in android using Kotlin?

By | April 10, 2025

Lists are common way of representing data in any mobile application. In this example I’ll create a list view of all countries using Kotlin for Android. This implementation will include the necessary components to display country names in a RecyclerView. First, let’s organize this into several parts: To set up this project, you’ll need to:… Read More »

Expanded/ Multi-Level List in Flutter for Android and iOS

By | July 14, 2019

Here is a simple example for creating expanded list in flutter. Watch Video Tutorial We will create a new class named “Entry” which will be the data on each row of the list. Data Source Let’s create the array to be shown in the expanded list. Create Row Widget Create the List That’s it. Complete… Read More »