You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are requirements for multiple screens. There's nothing specific, everything can change, but multiple screens don't change. 😄 So I checked how multi-screen support is going on in Flutter. And I found the following:
As you can see in the example, this is part of how to embed Flutter in a native app. The best way is to embed Flutter in tizen as one of the GUI widgets , but this is not easy In the current implementation. (Many of our rendering behavior are
based on window)
Here is my rough plan based on these.
Make windows externally and use them. This will allow us to create and place partial windows at single app. (Support partial window engine#98)
Create spawn API in embedder.
Create FlutterEngineGroup API at native API
Port sample app to tizen
(Of course, I am not insisting that this feature should be done this way. Any ideas are welcome. 😄 )
Background?
There are requirements for
multiple screens. There's nothing specific, everything can change, butmultiple screensdon't change. 😄 So I checked how multi-screen support is going on in Flutter. And I found the following:IMO, Supporting multiple windows didn't seem to happen soon at this moment. So I decided to look for Plan B.
That is
EngineGroupfeature.(https://flutter.dev/docs/development/add-to-app/multiple-flutters)Technically, It’s a little different but I thought It would be able to produce similar looking with multi screen app.
So, I aimed the first step of this task to port sample app(https://github.com/flutter/samples/tree/master/add_to_app/multiple_flutters) at tizen.
EngineGroup
As you can see in the example, this is part of how to embed Flutter in a native app. The best way is to embed Flutter in tizen as one of the GUI widgets , but this is not easy In the current implementation. (Many of our rendering behavior are
based on window)
Here is my rough plan based on these.
spawnAPI in embedder.FlutterEngineGroupAPI at native API(Of course, I am not insisting that this feature should be done this way. Any ideas are welcome. 😄 )