All Questions
Tagged with flutter-dependencies flutter-plugin
63 questions
1
vote
1
answer
62
views
Integrating a Native Android Package via a Flutter Plugin
I am migrating from using a native android package to making a flutter plugin around this package. During the build process, I encounter an error indicating that the required dependency cannot be ...
0
votes
0
answers
20
views
add native android module to flutter plugin for debugging
I have a native android Ml-kit module. I am trying to add it to flutter plugin (android) as a module dependency
settings.gladle:
include ':ml-kit'
project(':ml-kit').projectDir=new File(rootDir, "...
1
vote
1
answer
242
views
Flutter plugins fail to load in a fragment
The flutter plugins are not loading when used with FlutterFragment. However, they are working fine when used with FlutterActivity.
Ends up with the following exception for exception
E [ERROR:flutter/...
0
votes
0
answers
107
views
How can I display a PPT file in Flutter?
I want to display a PPT file in my Flutter app. I'm receiving the PPT file URL from an API and need to display it.
Currently, I'm using a WebView to achieve this because I haven't found any Flutter ...
0
votes
0
answers
63
views
Private native dependencies in Flutter plugin
For a Flutter plugin we're working on, we need to download a native dependency for both Android and iOS, which is hosted on a cloud service that requests a token in the URL specifying the dependency ...
0
votes
1
answer
178
views
How can I store the set pattern lock in flutter?
I want to set own pattern lock in my flutter app and want to open the app later with same lock . I'm using a pattern lock plugin to set the pattern. How can I store the pattern/pin lock ?
I thought to ...
1
vote
0
answers
270
views
Flutter plugin as a binary or library
Is it possible to make flutter plugin as a library,so that it can be used and add as a dependency to another flutter app?
I have created a flutter plugin,that plugin uses jar file as a dependency,and ...
47
votes
4
answers
44k
views
Unable to get list of installed Simulator runtimes
I am using macOS and I am installing flutter. When I run to 'flutter doctor' I take a error like
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.13.5, on ...
0
votes
0
answers
135
views
Flutter - Camera permission pop up not closing after deny
I am using this QR Code Scanner plugin https://pub.dev/packages/qr_code_scanner in my flutter app. For this my app is requesting for camera permission, If I deny the camera permission, the pop is not ...
0
votes
5
answers
5k
views
Flutter: The plugin `razorpay_flutter` doesn't have a main class defined in C:\Users\
While I am running flutter pub get command which is used to fetch the dependencies listed in the pubspec.yaml file of your Flutter project, I'm getting this error:
Got dependencies!
The plugin ...
1
vote
0
answers
368
views
Flutter: Slider button is not rebuilding after set state
I am using this plugin slider_button 2.0.0 https://pub.dev/packages/slider_button
Here I have created the widget and I need this slider button to appear always.
This slider button is not rebuilding ...
0
votes
0
answers
375
views
Flutter- Too few positional arguments: 1 required, 0 given. - upi_payment_qrcode_generator
I am working on flutter project, Where I am using plugin called upi_payment_qrcode_generator, version is 1.2.0. Previously this was working locally, but after migrating my project to git repo, It is ...
0
votes
3
answers
903
views
A problem occurred evaluating project ':media_kit_libs_android_video'
FAILURE: Build failed with an exception.
Where:
Build file 'C:\Users\pc\AppData\Local\Pub\Cache\hosted\pub.dev\media_kit_libs_android_video-1.0.0\android\build.gradle' line: 68
What went wrong:
A ...
0
votes
1
answer
2k
views
flutter error: Either zero or 2 or more [DropdownMenuItem]s were detected with the same value
I am using two dropdowns. My dropdowns will be work alternate, We select city from first dropdown after selecting city I will get outlets then I will show outlets.
For the first time its working fine ...
1
vote
1
answer
180
views
How to create a non published flutter plugin with versioning enabled?
I am a freelancer. I wrote a plugin dependency to share among my projects for codes such as api calls and common UIs. The problem is, every time I do a breaking change such as changing a class name, I ...