Add onStart hook to FlutterFragmentActivity (flutter/engine#6719)
Seems like this file was missed when onStart hooks were added recently in this pull request: https://github.com/flutter/engine/pull/5177
This commit is contained in:
committed by
matthew-carroll
parent
66be1dee05
commit
d6a1bcc917
@@ -101,6 +101,12 @@ public class FlutterFragmentActivity
|
||||
super.onBackPressed();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStart() {
|
||||
super.onStart();
|
||||
eventDelegate.onStart();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStop() {
|
||||
|
||||
Reference in New Issue
Block a user