I tried to create a task app using flutter, So I created a text field in DialogBox and my aim is when I add some text into the text field and when I clicked the OK but...
I have an existing native iOS App that in production already. Now i want a flutter module to be integrated into the existing app. My flutter module works fine when run...
Everyone, please help me My Flutter Plugin Java can't start Intent service from android native please tell me to fix I created a Flutter plugin to connect to my...
I'm having a simple Flutter plugin that communicates through a <code>MethodChannel</code> with some native Android code. Here's a simple example how the methods provid...
I'm trying to call Dart code from Android when either the Activity is in de background or when there is no activity at all. For example, when the alarmmanager has trig...
I receive the above error message in the following code. <pre><code>import 'package:flutter/services.dart'; import 'dart:io'; // for File import 'package:file_pick...
I have a method channel registered in the Android build's MainActivity class, which works fine when called from the foreground application. I want to call this...
I tried to make a MethodCall type judgement function using kotlin, but it return a type mismatch for me, how should I fix with it? <pre><code>import java.util.Obje...
I have two different functionalities that are to be written in native code(android/ios). I want to create multiple flutter method channels for each of these functional...
I'm trying to integrate accessibility service in the flutter based application and I dug into it and found out that I will have to use method channels in order to achi...
I have created a custom MethodChannel com.example.app/widget that updates a home screen widget on Android after receiving a Firebase Cloud Message. It runs...
I am working on a native Android widget in a Flutter App. In which there is refresh button, on click of that I have to call a method in the Flutter code. I am using Fl...
so i followed everthing from 'https://flutter.dev/docs/development/platform-integration/platform-channels?tab=android-channel-java-tab' but when I click the floating b...
So, here i'm trying to implement my MethodChannel on Flutter. Here are some of my code snippets. <pre><code><manifest xmlns:android=http://schemas....
I'm trying to write platform specific code in Flutter. First of all, created a method to obtain battery temperature inside MainActivity.kt This is my full code...