diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index 30aa626..0000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Dart_SDK.xml b/.idea/libraries/Dart_SDK.xml deleted file mode 100644 index 7221a18..0000000 --- a/.idea/libraries/Dart_SDK.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index f3f4a81..0000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,695 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - unityView - UnityUtils - getUnityView - inAppBrowserActivity - onMess - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1551719267177 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/flutter_unity_widget.iml b/flutter_unity_widget.iml deleted file mode 100644 index 73e7ebd..0000000 --- a/flutter_unity_widget.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/lib/flutter_unity_widget.dart b/lib/flutter_unity_widget.dart index 5fea340..f9ac9a5 100644 --- a/lib/flutter_unity_widget.dart +++ b/lib/flutter_unity_widget.dart @@ -41,7 +41,11 @@ class UnityWidgetController { } postMessage(String gameObject, methodName, message) { - _channel.invokeMethod('postMessage', [gameObject, methodName, message]); + _channel.invokeMethod('postMessage', { + 'gameObject': gameObject, + 'methodName': methodName, + 'message': message, + }); } pause() async { @@ -78,7 +82,6 @@ class UnityWidget extends StatefulWidget { ///Event fires when the [UnityWidget] gets a message from unity. final onUnityMessageCallback onUnityMessage; - UnityWidget( {Key key, @required this.onUnityViewCreated, this.onUnityMessage}); @@ -87,17 +90,16 @@ class UnityWidget extends StatefulWidget { } class _UnityWidgetState extends State { - UnityWidgetController _controller; @override void initState() { - // widget.controller = + // widget.controller = super.initState(); } -@override + @override void dispose() { super.dispose(); if (_controller != null) {