Can we publish Flutter package to pub dev of older version which is lower than latest version?
My case is, in my flutter package we are having latest version of ‘2.0.0’. My Cx reported issue in our older version ‘1.1.6’. We need to provide patch version of ‘1.1.7’ on pub dev.
error while use this package flutter_otp_text_field
Launching libmain.dart on Android SDK built for x86 in debug mode…
Running Gradle task ‘assembleDebug’…
lib/otp.dart:18:13: Error: The method ‘OTPTextField’ isn’t defined for the class ‘OTPScreen’.
Flutter Web how to give location permission
I am following this tutorial. The app uses the geolocator and geocoding packages to fetch the user’s current location and display the weather for that location. I have successfully set up the location permissions for:
Adaptive Text Flutter
I’ve been having trouble making my app adaptive to different text sizes. I’ve tried popular packages like ScreenUtil and several others, but nothing seems to resolve the problem. I also created a class to make my app responsive overall, but it doesn’t affect the text sizes. Additionally, I tried using FittedBox, but it doesn’t work on some of the texts. What should I do?
Error while Running ./gradlew signingReport in the android folder in the project
When I run:
Unhandled Exception: MissingPluginException(No implementation found for method runModelOnImage on channel tflite)
I’m facing this problem : [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MissingPluginException(No implementation found for method runModelOnImage on channel tflite) from more than 24 hours. I already tried flutter clean ,flutter pub get , flutter run commands. I added the model in tflite and labels in txt format in assets. I’ve also added aaptOptions {
noCompress ‘tflite’
noCompress ‘lite’
} this in android/app/build.gradle file. Even I tried to clone some projects of ML and Flutter and tru to run them but still face same issue. Can Anyone please help me
got this error while adding stripe payement gateway in my flutterapp
A problem occurred configuring root project ‘android’.
Flutter: Drag and Drop Columns from Column Chooser to PlutoGrid
I’m working on a Flutter project where I need to implement a drag-and-drop functionality. I want to drag columns from an overlay column chooser and drop them into a specific position (index) in a PlutoGrid.
Trouble with flutter dependency management
I’m new on Flutter and i’m having some doubt about how i’m managing dependencies.
Here’s my current dependencies on the pubspec.yml:
listening to calls in the background with flutter and retrieving information from firebase
In an application I wrote with Flutter, I need to build a structure that will display an alert screen by taking customer information from firebase according to the number when a call comes in. My customer especially wants this so that he can address his customers by name. I would be very grateful if you help me. Thank you very much in advance.