Closed IsmailAlamKhan closed 3 years ago
Excuse me. I still don't know how to pull.
My suggestions in render.dart - > graphics
final points = List
NOTICE: This constructor cannot be used in null-safe code. /// Use [List.filled] to create a non-empty list.
@MarceloRab I fixed what you suggested.
FIx - core > scene_controller
f ((_config.useKeyboard ?? false) || (_config.usePointer ?? false)) {
I don't know why it is generating an error. Would it be something on nullsafety?
FIx - core > scene_controller
f ((_config.useKeyboard ?? false) || (_config.usePointer ?? false)) {
I don't know why it is generating an error. Would it be something on nullsafety? Can you say what error you are getting?
My suggestions in graphx_widget.dart - > SceneBuilderWidget
final SceneController Function() builder;
...required this.builder,
...late SceneController _controller;
...
_controller = widget.builder();
'