Rebar Ahmad
Rebar Ahmad
@mickeyl could you have a look or accept this PR?
> Any chance to get this merged soon? It's one of the dependencies holding me up from migrating to null-safety. The outlined icons are now integrated in new flutter versions....
> Thanks for the links, I will take a look at it Any updates?
If you use Android, please consider using Unity 2021.*, because Unity introduced a Bug in Unity 2022.* for Android Builds.
> Unity's initial project was Unity 2020. After modification with 2021, package runs inside the Flutter. The Flutter SDK version is 3.1.0-9.0pre. There is no flash back, but the Unity...
> **Describe the bug** This is a bug that occurs when a UnityWidget is kept alive in the widget tree, but hidden by another widget. In the following example the...
> @Ahmadre yes,it also happened on Flutter Stable 3.0.5. I donot kown how to fix it. @juicycleff Can you look on that issue? Did you try: ```dart @override void didChangeAppLifecycleState(AppLifecycleState...
Did you try: ```dart @override void didChangeAppLifecycleState(AppLifecycleState state) { switch (state) { case AppLifecycleState.resumed: unityWidgetController.resume(); break; case AppLifecycleState.paused: unityWidgetController.pause(); break; default: } } ``` For more read Flutter's: [WidgetsBindingObserver](https://api.flutter.dev/flutter/widgets/WidgetsBindingObserver-class.html)
> Hi, We have tried the Back to native call this function **UnityMessageManager.Instance.ShowHostMainWindow();** from unity > > In NativeAPI.cs file we have call the below code: > > **jc.GetStatic("instance"); overrideActivity.Call("showMainActivity");**...
@IgeeTheron that's not an issue of this plugin, but an issue of Flutter and iOS: See here: https://github.com/flutter/flutter/issues/70936 and here: https://github.com/flutter/flutter/issues/43902 Issue is still open. @juicycleff I would close this...