Home
last modified time | relevance | path

Searched refs:methodChannel (Results 1 – 10 of 10) sorted by relevance

/third_party/flutter/flutter/dev/integration_tests/android_views/android/app/src/main/java/io/flutter/integration/androidviews/
DSimpleViewFactory.java24 MethodChannel methodChannel = new MethodChannel(messenger, "simple_view/" + id); in create() local
25 return new SimplePlatformView(context, methodChannel); in create()
DTouchPipe.java21 TouchPipe(MethodChannel methodChannel, View view) { in TouchPipe() argument
22 mMethodChannel = methodChannel; in TouchPipe()
DSimplePlatformView.java20 SimplePlatformView(Context context, MethodChannel methodChannel) { in SimplePlatformView() argument
21 mMethodChannel = methodChannel; in SimplePlatformView()
/third_party/flutter/flutter/examples/platform_channel/lib/
Dmain.dart16 static const MethodChannel methodChannel =
27 final int result = await methodChannel.invokeMethod('getBatteryLevel');
/third_party/flutter/flutter/examples/platform_channel_swift/lib/
Dmain.dart16 static const MethodChannel methodChannel =
27 final int result = await methodChannel.invokeMethod('getBatteryLevel');
/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/
DSwiftEjdb2FlutterPlugin.swift111 let methodChannel: FlutterMethodChannel variable
118 self.methodChannel = FlutterMethodChannel(name: "ejdb2", binaryMessenger: registrar.messenger())
121 registrar.addMethodCallDelegate(self, channel: methodChannel)
/third_party/ejdb/src/bindings/ejdb2_flutter/android/src/main/java/com/softmotions/ejdb2/
DEjdb2FlutterPlugin.java68 this.methodChannel = new MethodChannel(registrar.messenger(), "ejdb2"); in Ejdb2FlutterPlugin()
69 this.methodChannel.setMethodCallHandler(this); in Ejdb2FlutterPlugin()
76 final MethodChannel methodChannel; field in Ejdb2FlutterPlugin
/third_party/flutter/flutter/
DREADME.md65 int result = await methodChannel.invokeMethod('getBatteryLevel');
/third_party/flutter/
DREADME.md65 int result = await methodChannel.invokeMethod('getBatteryLevel');
/third_party/flutter/flutter/packages/flutter/lib/src/services/
Dplatform_channel.dart488 final MethodChannel methodChannel = MethodChannel(name, codec);
504 await methodChannel.invokeMethod<void>('listen', arguments);
516 await methodChannel.invokeMethod<void>('cancel', arguments);