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/ |
D | SimpleViewFactory.java | 24 MethodChannel methodChannel = new MethodChannel(messenger, "simple_view/" + id); in create() local 25 return new SimplePlatformView(context, methodChannel); in create()
|
D | TouchPipe.java | 21 TouchPipe(MethodChannel methodChannel, View view) { in TouchPipe() argument 22 mMethodChannel = methodChannel; in TouchPipe()
|
D | SimplePlatformView.java | 20 SimplePlatformView(Context context, MethodChannel methodChannel) { in SimplePlatformView() argument 21 mMethodChannel = methodChannel; in SimplePlatformView()
|
/third_party/flutter/flutter/examples/platform_channel/lib/ |
D | main.dart | 16 static const MethodChannel methodChannel = 27 final int result = await methodChannel.invokeMethod('getBatteryLevel');
|
/third_party/flutter/flutter/examples/platform_channel_swift/lib/ |
D | main.dart | 16 static const MethodChannel methodChannel = 27 final int result = await methodChannel.invokeMethod('getBatteryLevel');
|
/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/ |
D | SwiftEjdb2FlutterPlugin.swift | 111 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/ |
D | Ejdb2FlutterPlugin.java | 68 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/ |
D | README.md | 65 int result = await methodChannel.invokeMethod('getBatteryLevel');
|
/third_party/flutter/ |
D | README.md | 65 int result = await methodChannel.invokeMethod('getBatteryLevel');
|
/third_party/flutter/flutter/packages/flutter/lib/src/services/ |
D | platform_channel.dart | 488 final MethodChannel methodChannel = MethodChannel(name, codec); 504 await methodChannel.invokeMethod<void>('listen', arguments); 516 await methodChannel.invokeMethod<void>('cancel', arguments);
|