Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UnityWidgetController has to be initialized #800

Closed
robertosw opened this issue Apr 28, 2023 · 3 comments
Closed

UnityWidgetController has to be initialized #800

robertosw opened this issue Apr 28, 2023 · 3 comments

Comments

@robertosw
Copy link

Describe the bug
Using UnityWidget() requires the use of a controller. This controller is shown in all examples without being initialised. However Current Flutter and Dart Versions require the initialisation.

To Reproduce
Steps to reproduce the behavior:

  1. write: UnityWidgetController _unityWidgetController; in some class.
  2. Get initialisation error

Expected behavior
Not being forced to initialise the Controller

Newest Flutter and Dart version
Unity: Ubuntu, 2021.1.3

@LokeshNakka
Copy link

late UnityWidgetController _unityWidgetController;

@robertosw
Copy link
Author

Is this really safe to do? I can imagine, calling a method of the widget (at the wrong time) might result in some problems.

@timbotimbo
Copy link
Collaborator

The current example project is not null-safe, thats why you get these errors in a modern null-safe project.

Check out pull request #732 for a null-safe version.

That uses UnityWidgetController? instead of late, so you can always check if it is null first.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants