MoFA Studio App Development
1. Overview
Build apps as self-contained crates under apps/. Use MofaApp for registration and keep shell coupling minimal.
2. New app workflow
- •Scaffold the app crate (copy mofa-fm or
cargo new). - •Implement
MofaAppand export the screen type. - •Create the screen with
live_design!andWidgetimpl. - •Register the app in the shell (Cargo features,
LiveRegister,LiveHook). - •Add the dashboard page and sidebar entry.
- •Add timer and dark mode hooks if needed.
- •Add dataflow wiring if the app uses Dora.
3. Existing app changes
- •Keep UI changes inside
apps/<app>/src/screen/*. - •Keep dataflow changes inside
apps/<app>/dataflow. - •Update shared widgets in
mofa-widgetsonly when multiple apps need it.
4. References
- •references/app-workflow.md
- •references/shell-integration.md
- •references/app-edge-cases.md