1

构建https://github.com/google/flutter-desktop-embedding ok。

嵌入使用build/flutter_assets来自 Flutter 项目的 a 进行嵌入。https://github.com/google/flutter-desktop-embedding/blob/master/linux/example/flutter_embedder_example.cc#L35

但是在 Flutter 项目中这是如何生成的呢?

flutter build

实际上我设法构建build/flutter_assets了一次并且嵌入工作(很酷的东西),但现在我不能再复制了,有点奇怪。

4

1 回答 1

2

linux lib 的 make 执行示例项目的颤振构建命令。

只需选择在颤振项目中生成的颤振构建命令build/flutter_assets即可嵌入。命令是:

flutter build flx \
 --local-engine-src-path=../../engine/src \
 --local-engine=host_debug_unopt

已解决此问题https://github.com/google/flutter-desktop-embedding/issues/19

于 2018-03-10T08:42:20.560 回答