No description
  • Rust 75.1%
  • CSS 15.4%
  • Nix 9.5%
Find a file
2026-01-26 21:34:21 +01:00
assets added hollys button 2026-01-26 21:34:21 +01:00
src added hollys button 2026-01-26 21:34:21 +01:00
.envrc git init 2025-11-05 09:33:00 +01:00
.gitignore nix build package 2025-11-29 15:49:36 +01:00
Cargo.lock update 2026-01-22 00:01:34 +01:00
Cargo.toml better button generation and structure 2025-12-03 23:55:26 +01:00
clippy.toml init 2025-11-05 10:14:17 +01:00
Dioxus.toml misc update 2025-11-29 14:31:05 +01:00
flake.lock update 2026-01-22 00:01:34 +01:00
flake.nix update 2026-01-22 00:01:34 +01:00
README.md init 2025-11-05 10:14:17 +01:00

Development

Your new bare-bones project includes minimal organization with a single main.rs file and a few assets.

project/
├─ assets/ # Any assets that are used by the app should be placed here
├─ src/
│  ├─ main.rs # main.rs is the entry point to your application and currently contains all components for the app
├─ Cargo.toml # The Cargo.toml file defines the dependencies and feature flags for your project

Serving Your App

Run the following command in the root of your project to start developing with the default platform:

dx serve

To run for a different platform, use the --platform platform flag. E.g.

dx serve --platform desktop