skip to Main Content

Flutter – Make certain widget scrollable

I have a Column widget in my page. There are two widget in Column widget, one is ListTie, another is ListView. Widget _showBody(BuildContext context) { return Column(children: [ ListTile( horizontalTitleGap: 0, tileColor: Colors.white, onTap: () {}, leading: const Icon( Icons.smart_button,…

VIEW QUESTION
Back To Top
Search