skip to Main Content

How to remove Default space between Two ListTile – Flutter

Column( children: [ ListTile( visualDensity: VisualDensity(horizontal: 0, vertical: 3), contentPadding: const EdgeInsets.symmetric(horizontal: 0.0, vertical: 0.0), //contentPadding: EdgeInsets.only(left: 0.0, right: 0.0), leading: IconButton( onPressed: (){}, icon:const Icon(Icons.location_on_outlined,size: 40,) ), title: GestureDetector( onTap: (){ }, child: const Text("PICK UP",style: TextStyle( fontSize: 19,…

VIEW QUESTION

Fluttertoast problem: Member not found: 'Overlay.maybeOf'

/C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/fluttertoast-8.1.3/lib/fluttertoast.dart:165:28: Error: Member not found: 'Overlay.maybeOf'. var _overlay = Overlay.maybeOf(context!); ^^^^^^^ /C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/fluttertoast-8.1.3/lib/fluttertoast.dart:154:18: Error: The getter 'mounted' isn't defined for the class 'BuildContext'. - 'BuildContext' is from 'package:flutter/src/widgets/framework.dart' ('/C:/src/flutter/packages/flutter/lib/src/widgets/framework.dart'). framework.dart:1 Try correcting the name to the name of an existing getter,…

VIEW QUESTION
Back To Top
Search