Subscribe

Flutter expandable list items

✍️

Creating expandable list items in Flutter applications

7 Aug, 2021 · 5 min read

For this article, we’ll look at how we can make expandable list items in Flutter. We will use this in a list, but you can also use this as an item on it’s own.

Our expandable list will look like the example below.

I’m taking my Flutter hello world app as a starting point if you want to follow along.

Defining the dataset

We are using a list of quotes in our example, where we initially see the author of the quote, and on click, it expands to show the actual selection.

For this example, I use a static quote list, and we won’t focus on converting this into a class for this article.

You can use the following list as a reference:

final List quotes = [
   {
     "quote":
         "It’s your place in the world; it’s your life. Go on and do all you can with it, and make it the life you want to live.",
     "author": "Mae Jemison"
   },
   {
     "quote":
         "You may be disappointed if you fail, but you are doomed if you don’t try.",
     "author": "Beverly Sills"
   },
   {
     "quote":
         "Remember no one can make you feel inferior without your consent.",
     "author": "Eleanor Roosevelt"
   },
   {
     "quote": "Life is what we make it, always has been, always will be.",
     "author": "Grandma Moses"
   },
   {
     "quote":
         "The question isn’t who is going to let me; it’s who is going to stop me.",
     "author": "Ayn Rand"
   },
   {
     "quote":
         "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.",
     "author": "Henry Ford"
   },
   {
     "quote":
         "It’s not the years in your life that count. It’s the life in your years.",
     "author": "Abraham Lincoln"
   },
   {
     "quote": "Change your thoughts and you change your world.",
     "author": "Norman Vincent Peale"
   },
   {
     "quote":
         "Either write something worth reading or do something worth writing.",
     "author": "Benjamin Franklin"
   },
   {
     "quote": "Nothing is impossible, the word itself says, “I’m possible!”",
     "author": "–Audrey Hepburn"
   },
   {
     "quote": "The only way to do great work is to love what you do.",
     "author": "Steve Jobs"
   },
   {
     "quote": "If you can dream it, you can achieve it.",
     "author": "Zig Ziglar"
   }
];

Render a list of items in Flutter

Now we want to render a list of these items in Flutter. We can do this by using the ListView builder.

@override
Widget build(BuildContext context) {
   return ListView.separated(
     padding: const EdgeInsets.all(8),
     itemCount: quotes.length,
     itemBuilder: (BuildContext context, int index) {
       // Render our item
     },
     separatorBuilder: (BuildContext context, int index) => const Divider(),
   );
}

Let’s change the item builder to return a custom widget, our expanding list tile item.

itemBuilder: (BuildContext context, int index) {
   return _buildExpandableTile(quotes[index]);
},

Flutter expandable tile

As for the expandable tile, item has a title attribute and can have a list tile item that will expand.

In our case, we’ll create it like this:

Widget _buildExpandableTile(item) {
   return ExpansionTile(
     title: Text(
       item['author'],
     ),
     children: <Widget>[
       ListTile(
         title: Text(
           item['quote'],
           style: TextStyle(fontWeight: FontWeight.w700),
         ),
       )
     ],
   );
}

This will cover the logic we need and render the element on which we can click to expand and show their content.

And that’s it, a super-easy way in Flutter to create an expandable list item list.

I’m surprised at how easy this is in Flutter, as some other frameworks want you to keep track of these actions and state yourself.

You can view the complete code on GitHub.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Adding Auth0 to a Flutter application

22 Aug, 2021 · 14 min read

Adding Auth0 to a Flutter application

Creating dialogs in Flutter

21 Aug, 2021 · 6 min read

Creating dialogs in Flutter

Join 2099 devs and subscribe to my newsletter