[refactor] Remove configuration files and assets

This commit is contained in:
2025-08-21 21:59:34 +02:00
parent 68311051ba
commit df6d7c7db2
29 changed files with 986 additions and 364 deletions

8
ui/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "ui"
version = "0.1.0"
edition = "2021"
[dependencies]
dioxus = { workspace = true }
api = { workspace = true }

16
ui/README.md Normal file
View File

@@ -0,0 +1,16 @@
# UI
This crate contains all shared components for the workspace. This is a great place to place any UI you would like to use in multiple platforms like a common `Button` or `Navbar` component.
```
ui/
├─ src/
│ ├─ lib.rs # The entrypoint for the ui crate
│ ├─ hero.rs # The Hero component that will be used in every platform
│ ├─ echo.rs # The shared echo component that communicates with the server
│ ├─ navbar.rs # The Navbar component that will be used in the layout of every platform's router
```
## Dependencies
Since this crate is shared between multiple platforms, it should not pull in any platform specific dependencies. For example, if you want to use the `web_sys` crate in the web build of your app, you should not add it to this crate. Instead, you should add platform specific dependencies to the [web](../web/Cargo.toml), [desktop](../desktop/Cargo.toml), or [mobile](../mobile/Cargo.toml) crates.

1
ui/src/lib.rs Normal file
View File

@@ -0,0 +1 @@
//! This crate contains all shared UI for the workspace.