0

I've made a side menu with items but what I need now is to add another sub menu for each item.

What should I do to accomplish that?

class CustomListTitle extends StatelessWidget{
    //....
    Row(
      children: <Widget>[
      Icon(icon),
      Padding(
        padding: const EdgeInsets.all(8.0),
        child: Text(text, style: TextStyle(
          fontSize: 16.0
        ),),
      ),
      ],
     ),
    Icon(Icons.arrow_right)
    //....
}
Alex Myers
  • 6,196
  • 7
  • 23
  • 39
Sarah Abouyassine
  • 169
  • 1
  • 2
  • 13

1 Answers1

0

I am not exactly sure what you want, but If what you want is basically this: enter image description here except inside of you're side menu, then I suggest that you check out ExpansionPanels

Arthur Facredyn
  • 1,017
  • 1
  • 9
  • 16