You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
private static final String CHANNEL = "click2/hello";
At the end of onCreate:
new FlutterMethodChannel(getFlutterView(), CHANNEL).setMethodCallHandler(
new FlutterMethodChannel.MethodCallHandler() {
@Override
public void onMethodCall(MethodCall call, FlutterMethodChannel.Response response) {
Log.i("click", "method called: " + call.method);
}
});
Start the app in the debugger. You can set a breakpoint in Dart code but not in Java code. (But, if you log a message, it does show up in the console.)
The text was updated successfully, but these errors were encountered:
Setting a breakpoint in Java code and running the Flutter app in debug mode will not stop at the breakpoint.
To reproduce:
create a new Flutter app
Add code to _MyHomePageState in main.dart to call a platform method when you click:
In MainActivity:
At the end of onCreate:
Start the app in the debugger. You can set a breakpoint in Dart code but not in Java code. (But, if you log a message, it does show up in the console.)
The text was updated successfully, but these errors were encountered: