We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug No scaling or rotating can be done when the component is inside ListView.
ListView
To reproduce Steps to reproduce the behavior:
ModelViewer
ListView( children: [ Container( height: 300, child: ModelViewer( src: 'modelUrl', alt: 'A 3D model', ar: false, autoRotate: true, cameraControls: true, ), ) ], ),
Expected behavior Gestures should work
Additional context The internal WebView should handle all gestures by adding the following property to the constructor:
WebView
gestureRecognizers: <Factory<OneSequenceGestureRecognizer>>{ Factory<OneSequenceGestureRecognizer>( () => EagerGestureRecognizer(), ), },
Alternatively, there should be a way for the client app to enable that behaviour.
The text was updated successfully, but these errors were encountered:
Fix omchiii#11
bc65c0d
bc65c0d Thank you for your advice!
Sorry, something went wrong.
Merge pull request #16 from Foldblade/master
164c02b
Fix #11 and a less elegant solution of #8
Successfully merging a pull request may close this issue.
Describe the bug
No scaling or rotating can be done when the component is inside
ListView
.To reproduce
Steps to reproduce the behavior:
ModelViewer
insideListView
, e.g.Expected behavior
Gestures should work
Additional context
The internal
WebView
should handle all gestures by adding the following property to the constructor:Alternatively, there should be a way for the client app to enable that behaviour.
The text was updated successfully, but these errors were encountered: