Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 434ff2c

Browse files
authored
Merge pull request #34 from DioxusLabs/feat/enhance-dog-app
feat: Enhance dog app
2 parents 896306c + 48c4bc5 commit 434ff2c

File tree

8 files changed

+107
-548
lines changed

8 files changed

+107
-548
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Current Projects:
1818
| [E-Commerce](./ecommerce-site) | LiveView | @jkelleyrtp |
1919
| [WiFi Scanner](./wifi-scanner) | Desktop | @jkelleyrtp |
2020
| [Weather App (WIP](./weatherapp) | Web | @jkelleyrtp |
21-
| [Dog Search Engine](./dog-app) | Web/Desktop | @jkelleyrtp |
21+
| [Dog App](./dog-app) | Desktop | @jkelleyrtp |
2222

2323

2424
## TODOMVC (Desktop, Web)
@@ -42,5 +42,7 @@ Current Projects:
4242
## Weather App (Liveview) [WIP]
4343
[![Weather App](./)](./weatherapp)
4444

45-
## Dog Search Engine (Web) [WIP]
46-
[![Dog Search Engine](./)](./dog-app)
45+
## Dog App (Desktop)
46+
[Instructions](./dog-app/README.md/#Instructions)
47+
48+
[![Dog App](./dog-app/dog-app.png)](./dog-app)

dog-app/Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,16 @@ homepage = "https://dioxuslabs.com"
99
documentation = "https://dioxuslabs.com"
1010
keywords = ["dom", "ui", "gui", "react", "wasm"]
1111

12-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13-
1412
[dependencies]
15-
dioxus = { version = "0.3" }
16-
dioxus-desktop = { version = "0.3" }
13+
dioxus = "0.3"
14+
dioxus-desktop = "0.3"
1715
reqwest = { version = "0.11.8", features = ["json"] }
1816
serde = { version = "1.0.132", features = ["derive"] }
1917

20-
2118
[package.metadata.bundle]
2219
name = "Dog Search Engine"
2320
identifier = "com.jon.dogsearch"
24-
# icon = ["32x32.png", "128x128.png", "[email protected]"]
2521
version = "1.0.0"
26-
# resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
2722
copyright = "Copyright (c) Jane Doe 2016. All rights reserved."
2823
category = "Developer Tool"
2924
short_description = "An example application."

dog-app/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 🐶 Dog App
2+
3+
![Dog App](./dog-app.png)
4+
5+
### Instructions
6+
7+
To start it locally, run:
8+
9+
```bash
10+
cargo run
11+
```

dog-app/dog-app.png

239 KB
Loading

dog-app/index.html

Whitespace-only changes.

0 commit comments

Comments
 (0)