For questions about Flutter UI software development kit that are specific to version 2 of the framework. Use the more generic [flutter] tag on all Flutter questions, and only add this one if your question is specific to version 2.
I am new to flutter and I want to achieve the functionality of lighting the mobile edge whenever I receive notification in my app.
Is there any package available? (Although, I already google it and I can't find it.)
How can we achieve this type of…
I was using google_mobile_ads plugin to display ad as suggested in this codebook.
I tried this on my existing app with camera and tflite plugins to display a banner ad. I am able to display the ad successfully, but the camera completely hangs(in…
Basically, I have a Scrollable Column of Sections. Each section is an Expansion Tile, with a [ ListView ] as children attribute. (ListView uses NeverScrollPhysics, so all the children of the ListView are built at once). When I open a section (expand…
I am designing a web application using flutter and I want users to be able to see the destination url which usually appear at the bottom corner of desktop browser windows when they click or hover over the elements containing the link on the web page
I upgraded to Flutter 2 and when I run App on iPhone 11 Pro on Android Studio I get the error below. Running the App on Xcode works fine. Didn't have this problem until I upgraded to Flutter 2.
Failed to build iOS app
Error output from Xcode…
the app from chrome on desktop and mobile are different. the correct one is the one from desktop. the app on the mobile device (in this case iOS) has the images cut out from the screen or completely moved, plus there is a sort of zoom. If from…
I have this code and I am trying to make this gridview scrollable and no matter what I do it is not scrolling. I keep getting this renderoverflow error. I have tried to wrap it around SingleChildScroll view and also physics: ScrollPhysics() in its…
I have problems with Dart null safety.
Even when I explicitly check for nulls, it still complains
The exclamation mark is solving that
but it's pretty ugly and cumbersome.
Is there a way to make it smarter and nicer? Like e.g. header?.let{…
I'm having issues just using google_mobile_ads, when I try the method in the flutter tutorial I don't know how to make it work in my main
main
import 'package:android_alarm_manager/android_alarm_manager.dart';
import…
All my classes are getting errors after updating.
I tried flutter clean as well. When ever i run flutter pub get command i get the following error.
Because no versions of intl_utils match >1.8.0 <1.9.0 and intl_utils ^1.9.0 depends on…
I have upgraded to flutter 2.0.1 and tried running the flutter demo app in my android device even after an hour the message is still running gradle... is there a way to fix this or did i miss anything.
PS: it got build for web and launched in some…
Flutter 2 was released today and I've just upgraded the stable channel in Flutter for a test project. Images are immediately rendered pixelated/low-res. I imagine it has something to do with CanvasKit. Has anyone any idea of how to fix this?
I upgraded my app to Flutter 2 and made all the things null safe.
After that, I am encountering an error implementing Google mobile ads SDK.
I followed all the documentation and according to that, I am not supposed to get this error although the…
I have the following code for a DraggableScrollableSheet in Flutter.
DraggableScrollableSheet(
builder: (BuildContext context, ScrollController scrollController) {
return ClipRRect(
borderRadius: BorderRadius.only(
topLeft:…