simplestacknavigation/README.md

39 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2023-12-12 12:44:16 +00:00
# Makepad UI
This template should help get you started developing with Makepad Rust UI.
## Recommended IDE Setup
[VS Code](https://code.visualstudio.com/) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer).
# Desktop in Debug Mode
cargo run
2023-12-15 11:51:54 +00:00
MAKEPAD=lines cargo +nightly run simplestacknavigation
2023-12-12 12:44:16 +00:00
# Desktop in Release Mode
cargo run --release
# Desktop in small size
cargo run --profile=small
# Android
cargo makepad android run --release
2023-12-12 13:26:54 +00:00
cargo makepad android run -p simplestacknavigation --release
2023-12-12 12:44:16 +00:00
# IOS Simulator
cargo makepad apple ios --org=my.test --app=makepad-template run-sim --release
# IOS Device
cargo makepad apple ios --org-id=123456 --org=my.test --app=makepad-template run-device makepad-template --release
# Cargo Check Builds
cargo makepad check install-toolchain
cargo makepad check all
cargo makepad wasm install-toolchain
cargo makepad apple ios install-toolchain
2023-12-12 17:45:11 +00:00
cargo makepad android --abi=all install-toolchain
git add .
2023-12-15 11:51:54 +00:00
git commit -m "refoctor to latest rik branch"
2023-12-12 17:45:11 +00:00
git push -u origin main