I have to make an app that uses virtual reality, so should I drop the idea of using Flutter?
5 Answers
yes as much as I have seen flutter does support AR,I have been following a flutter developer on twitter he posts some cool AR stuff built with flutter here's a plugin ARCore he has built for flutter.
here are some of sample AR videos from the developer himself

- 17,235
- 8
- 110
- 131
-
AR Core is SDK is available for both ios and android platforms and support for different development engines like Unity is available. – Pooja Soni Nov 11 '20 at 05:02
Can I build 3D (OpenGL) apps with Flutter?
Today we don’t support for 3D via OpenGL ES or similar.We have long-term plans to expose an optimized 3D API, but right now we’re focused on 2D.
https://flutter.dev/docs/resources/faq#can-i-build-3d-opengl-apps-with-flutter
there aren't any OpenGL bindings supported by flutter. Flutter is only a 2d only application.
https://flutter.io/faq/#can-i-build-3d-opengl-apps-with-flutter
https://github.com/flutter/flutter/issues/14591
https://github.com/flutter/flutter/issues/7053
https://github.com/flutter/flutter/issues/179
I am not sure how VR would work at all on flutter.

- 7,672
- 1
- 24
- 27
-
-
2OSX just depreciated Opengl. I would assume the only avenue for VR support will be Vulkan – user1462442 Jun 26 '18 at 19:30
You can use google's ar core with flutter. Check out the arcore_flutter_plugin to work with ar in a flutter. As of now, there aren't any packages that specifically target VR. But you can use ARKIT arkit_flutter_plugin.
NOTE: ARCORE only works with android. And ARKIT only works with iOS.

- 857
- 1
- 13
- 28

- 239
- 3
- 21
I recently created a Flutter plugin for AR that supports both Android and iOS by wrapping around ARCore and ARKit: https://pub.dev/packages/ar_flutter_plugin
The plugin is a work in progress, but it already supports collaborative AR and sharing content through Google's Cloud Anchor Service and a lot of other useful features

- 134
- 1
- 4