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

Flutter a required Package wasn't found

type hereCMake Error at /snap/flutter/130/usr/share/cmake-3.16/Modules/FindPkgConfig.cmake:463 (message): A required package was not found Call Stack (most recent call first): /snap/flutter/130/usr/share/cmake-3.16/Modules/FindPkgConfig.cmake:643 (_pkg_check_modules_internal) flutter/ephemeral/.plugin_symlinks/audioplayers_linux/linux/CMakeLists.txt:25 (pkg_check_modules) I'm trying to play an audiofile using the audioplayers package, then on trying to run my app, I…

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

Why isn't the BottomAppBar showing up? – Flutter

I'm following this tutorial on youtube (https://www.youtube.com/watch?v=MW-KVmnXuiE) and at 01:27, when I tried to reload my emulator, the BottomAppBar didn't show up. There weren't any errors occurred though. This is my main.dart file import 'package:flutter/material.dart'; import 'package:secondlife_mobile/screens/home.dart'; void main() {…

VIEW QUESTION
Back To Top
Search