I have successfully integrated Google login in android without Firebase. We are using MySQL. I have followed this YouTube Flutter tutorial, but I have no idea
My flutter app is working properly in iOS Simulator. I have added fluttertoast by: Adding it on pubspec.yaml dependencies: flutter: sdk: flutter cupertino_icons
Goal: Changing the color of the prefixIcon next to the TextField when clicking on the TextField. TextField( decoration: InputDecoration( prefixIcon: Icon(
All of a sudden, I am getting this build error in my Android project: unexpected element <queries> found in <manifest> How do I fix it?
I have tried everything including changes in manifest file as well as putting the icon property in notification function but the notification icon is still whit
I intercept messages as follows: FirebaseMessaging.onMessage.listen((RemoteMessage message) async { print('Message data: ${message.data}'); }); I send mes
I've been reading about IDE shortcuts to make Flutter programming easier in Android Studio, but when I hit Alt-Enter (or click the yellow light bulb in the frin
I am developing a maze app on flutter. I have a grid of 100 flatButtons that all start as grey. When a flatButton is pressed, I want it to turn green if the mov
I am running the following test @TestOn('chrome') import 'package:flutter_test/flutter_test.dart'; import 'package:flutter/foundation.dart'; import 'package:m
I am sending multiple user_id with form data in a flutter to PHP page but my PHP API did not see array or obj. I used this code for other projects it could work
I can't ignore any async Functions from code coverage. I try to exclude File.exists() from my Code coverage. Attempts: Tried with // coverage:ignore-line ->
I want to make a simple login page using flutter, and using it with firebase. The first step when I created the project my code: flutter create --androidx Proje
I am working on an application with dynamic splash screen images. This is how I have implemented it. class _SplashScreenState extends State<SplashScreen>
There are few same values in the dropdown button , when i tap on that it show the error ,is there any way to use the use the dropdown with same values .I have t
I got this error when I try to generate a signed apk in the android studio of my flutter app - Process 'command 'E:\Flutter Apps\flutter\bin\flutter.bat'' finis
I am kinda new to flutter. I need help on Carousel images. I have carousel images using carousel_pro package. And i can open image on new page when pressed usin
I have a to do list app developed using flutter and SQLite and I'm wondering if it is a better practice to remove the SQLite database when I want to use Datasto
Hi i am using some text data to load from firebase and then showing it as Text.I am using Text() widget .I have a field called description in my firebase docume
Just upgraded to v1.1.8 for flutter. Restarted Android studio. Using an emulator. Drop down menu for devices has disappeared and the AVD manager has been greyed
After removing an item from a pagination, I'm getting an Ranger error (index) I want to update my paginated list as soon as an item is removed or even added, th