Questions tagged [flutter-plugin]

Use this tag for questions related to the creation or modification of plugins in flutter. For the use of, or issues with, plugins as dependencies, use [flutter-dependencies] instead.

Flutter plugins make the functionality of native code available to Flutter. This can be done through the use of platform channels.

See Developing plugin packages for more information.

492 questions
-1
votes
1 answer

Is there a package in flutter to remove background noise from video?

We want to create a video editing application and need this functionality. Any idea how can we build one?
-1
votes
1 answer

How to specify platforms when using "flutter create -t plugin"?

When creating a new Flutter plugin template from the command line using flutter create, if you do not specify any platforms, the default is (as of now), that no platforms are included. What is the actual verbatim command you would type in order to…
-1
votes
1 answer

Flutter NPE Unable to destroy activity

when i exit from flutter app two times it should me this crash. previously i used plugin and removed it im wondering why it showed this function setMethodCallHandler and no used for it before. can any one provide guide for this. would be…
-1
votes
1 answer

What is Custom FileProvider Path in Flutter Social Share Plugin?

I'm using this flutter social share plugin : appinio_social_share I have problem with the following code in AndroidXML:
-1
votes
1 answer

How to make a pdf reader plugin in Flutter?

I want to create an open source pdf reader plugin in Flutter from scratch. I need a guide to approach forward.
mm sti786
  • 19
  • 2
-1
votes
5 answers

Flutter plugin for a file picker that works on mobile and desktop that doesn't require go-flutter?

This seems like an issue that won't last for long, but I'm looking for a final solution for opening up a native file picker on all platforms including Desktop without installing go-flutter. Currently I'm using file_selector plugin by Flutter.dev and…
-1
votes
2 answers

how to implement referral code in a flutter app?

I am trying to implement a referral code which users can enter when registering thereby, the referral code sender, as well the person who is inputting the code when registering, they both get some rewards. I looked into firebase dynamic links., But…
-1
votes
1 answer

Using foreground service in flutter

I am using this library to use forground service in a flutter app i am trying the sample app in the example of this package but i am getting error which i am not able to understand Unhandled Exception: MissingPluginException(No implementation…
-1
votes
1 answer

How to convert class to listview in list.builder

I am using a plugin called Icapp_license for flutter which creates a file which includes all the license of the plugins you use so the output was this file and I want to convert to listview Generated File here link
-1
votes
2 answers

How to share an image from gallery with my flutter app?

Can anyone point me to a library or advice on how I can go about sharing an image from the gallery with my app using the share button? I want to have my app appear in the list of apps to share with. There are libraries such as [share]…
coding1223322
  • 461
  • 11
  • 26
-3
votes
2 answers

invokeMethod from windows host to Flutter client: how to send return value?

In Flutter it is possible to develop plugins for executing platform specific code. For example on a windows host it is possible to invoke c++ code from the Flutter client with: final int result = await platform.invokeMethod('getBatteryLevel'); At…
Eberulf
  • 1
  • 3
1 2 3
32
33