File tree 1 file changed +8
-0
lines changed
shell/platform/tizen/public 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -77,21 +77,29 @@ FlutterDesktopGetPluginRegistrar(FlutterDesktopEngineRef engine,
77
77
FLUTTER_EXPORT FlutterDesktopMessengerRef
78
78
FlutterDesktopEngineGetMessenger (FlutterDesktopEngineRef engine );
79
79
80
+ // Posts a locale change notification to the engine instance.
80
81
FLUTTER_EXPORT void FlutterDesktopNotifyLocaleChange (
81
82
FlutterDesktopEngineRef engine );
82
83
84
+ // Posts a low memory notification to the engine instance.
83
85
FLUTTER_EXPORT void FlutterDesktopNotifyLowMemoryWarning (
84
86
FlutterDesktopEngineRef engine );
85
87
88
+ // Notifies the engine that the app is in an inactive state and not receiving
89
+ // user input.
86
90
FLUTTER_EXPORT void FlutterDesktopNotifyAppIsInactive (
87
91
FlutterDesktopEngineRef engine );
88
92
93
+ // Notifies the engine that the app is visible and responding to user input.
89
94
FLUTTER_EXPORT void FlutterDesktopNotifyAppIsResumed (
90
95
FlutterDesktopEngineRef engine );
91
96
97
+ // Notifies the engine that the app is not currently visible to the user, not
98
+ // responding to user input, and running in the background.
92
99
FLUTTER_EXPORT void FlutterDesktopNotifyAppIsPaused (
93
100
FlutterDesktopEngineRef engine );
94
101
102
+ // Notifies the engine that the engine is detached from any host views.
95
103
FLUTTER_EXPORT void FlutterDesktopNotifyAppIsDetached (
96
104
FlutterDesktopEngineRef engine );
97
105
You can’t perform that action at this time.
0 commit comments