Swift Kim
Swift Kim
I referred to https://github.com/flutter-tizen/flutter-tizen/pull/418#issuecomment-1228058800 but ```csharp View rootView = new View() { WidthSpecification = LayoutParamPolicies.MatchParent, HeightSpecification = LayoutParamPolicies.MatchParent, Layout = new LinearLayout() { LinearOrientation = LinearLayout.Orientation.Vertical } }; Window.Instance.Add(rootView); var...
The following examples generate different results as described below although they are technically equivalent. ElmSharp: ```csharp Window window = new Window("ElmSharpApp"); window.BackButtonPressed += (s, e) => { Exit(); }; window.Show();...
The user can create a sharedLib project in an arbitrary location and reference it from a native UI app project (without having to manually copy files) using the "Multi Package"...
> I haven't actually tried it, but I imagined that it wouldn't be much different from plugin builds in that there is no entry point and the build result is...
Regarding the multi package build, I asked the Tizen SDK team for how to configure the build. We also have to consider how to support "plugin registration" of the module....
I'll open a PR once https://github.com/flutter-tizen/flutter-tizen/pull/393 is merged.
Further discussions: - How can we prevent `libembedding_cpp.a` from being included in the final TPK? - Can we avoid manual file copying and instead support the "multi package" build? (I...
The embedding by default expects `libapp.so` to be located directly under the `lib` directory, so it will be problematic if the directory structure looks like: ```sh lib └── tizen-x86-debug ├──...
> Are there any expected problems when choosing this? No, the current draft is based on that approach and the build commands look very consistent: ```sh $ flutter-tizen build tpk...
Documentation will be added to the wiki. See the PR comments until then. - C++: https://github.com/flutter-tizen/flutter-tizen/pull/405 - C#: https://github.com/flutter-tizen/flutter-tizen/pull/431