I'm developing an app in Flutter which is supposed to run on a POS with two screens. It's basically a tablet connected to another screen via a HDMI cable.
My problem is that whatever I run on my side of the screen also appears to the client's screen, and I need to hide it and show other content (as promotions for example).
I've already managed to use it using Android Presentation API (it will only run on Android). And I've read somewhere that I also can achieve it using Media Router.
But what I want to do is to run two engines of Flutter, one on each display, or control what is shown in each display in Flutter. The problem is I didn't found any library or useful article of how to do it on Flutter.
Does someone know how I would achieve that? If I don't make it, I'll have to create a whole new project using native Android.
For those who perhaps is facing this issue, I finally figured out how to manage it. I'm still using Android Presentation API, and now I'm creating a new engine for client display. I solved it using FlutterView, which is pretty new yet. It's basically used for rendering a Flutter in a Native app. But in our case it will render our project in another screen.
The only problem I didn't solve (yet) is that the two engines are completely different applications. So, if you are using Provider for managing your app state for example, you'll have two instances or more, one for each instance, and changes made in one won't reflect the others.
In my case I will solve it using Socket.io, but you'd probably also solve it using Method Channel. Ideally, it should have only one state, but for now that's what I've got.
Here's my code for solve this issue:
MainActivity.kt in android/app/src/main/kotlin
And here's the class I've created to solve my problem (in the same folder). The purpose of this class is basically to setup our Presentation display and choose the content view which will have our FlutterView.
Finally, create a simple layout which will render our application in the second/external display. Here's my layout (presentation_view.xml):