Last active
November 16, 2020 14:29
-
-
Save himanshusharma89/fb3a1929b4e188698b82336916955107 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ListView( | |
| shrinkWrap: true, | |
| primary: false, | |
| children: [ | |
| listItem(title: "See more", icon: Icons.dashboard_rounded), | |
| listItem(title: "Help & Support", icon: Icons.help_rounded), | |
| listItem(title: "Setting & Privacy", icon: Icons.settings), | |
| ListTile( | |
| leading: Icon( | |
| Icons.open_in_new_rounded, | |
| size: 40, | |
| ), | |
| title: Text( | |
| "Share", | |
| style: TextStyle(fontSize: 17), | |
| ), | |
| ) | |
| ], | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment