mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
Add onStart hook to FlutterFragmentActivity (#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
f2ea838b36
commit
8eccb860de
@@ -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