在 packages/my_materials
和 packages/my_editor
中分别执行 yarn 安装
cd packages/my_materials
yarn
cd ../my_editor
yarn
在 packages/my_app
中执行 flutter pub get
安装依赖
cd packages/my_app
flutter pub get
启动低代码编辑器
cd packages/my_editor
yarn start
会在浏览器自动打开 http://localhost:5556/
,界面如下
启动低代码物料
cd packages/my_materials
yarn start
会自动将上一步打开的链接跳转到 http://localhost:5556/?debug
,并注入物料组件
如果没看红框效果,请刷新一下,可能有延迟。
启动 Flutter App
cd packages/my_app
flutter run