Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DioxusLabs/awesome-dioxus
An awesome list of Dioxus-related content and resources
https://github.com/DioxusLabs/awesome-dioxus
List: awesome-dioxus
Last synced: 3 days ago
JSON representation
An awesome list of Dioxus-related content and resources
- Host: GitHub
- URL: https://github.com/DioxusLabs/awesome-dioxus
- Owner: DioxusLabs
- Created: 2021-10-19T04:08:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T13:26:06.000Z (8 months ago)
- Last Synced: 2024-05-22T19:02:58.382Z (8 months ago)
- Homepage: https://dioxuslabs.com/awesome
- Size: 65.4 KB
- Stars: 175
- Watchers: 11
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-rust-list - DioxusLabs/awesome-dioxus - dioxus?style=social"/> : An awesome list of Dioxus-related content and resources. (GUI)
- awesome-rust-list - DioxusLabs/awesome-dioxus - dioxus?style=social"/> : An awesome list of Dioxus-related content and resources. (GUI)
README
# **Awesome Dioxus**
[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)A collection of awesome things regarding the Dioxus ecosystem.
This repository contains the list of awesome stuff that [Dioxus Awesome](https://dioxuslabs.com/awesome) uses.
# Contributing
To add your project, simply copy an existing entry and fill out all the values. It should be clear what most of them mean. `"github"` and `"link"` are optional, but recommended. There's some enums, so here are their values:
- `"type"`:
- `"Awesome"`: Libraries/tools/or something else that helps developers with making Dioxus projects.
- `"MadeWith"`: Real-world apps made with Dioxus. If the primary purpose of the app is aiding Dioxus developers, use `"Awesome"` instead.
- `"category"`:
- `"Misc"`
- `"Util"`
- `"Logging"`
- `"Components"`
- `"Example"`
- `"Styling"`
- `"Deployment"`
- `"Renderer"`
- `"App"`: Generic category for `"MadeWith"` entries. Not actually displayed at the moment, because all `"MadeWith"` entries have this category.```rust
struct Item {
name: String,
description: String,
category: Category,
/// Items won't display stars without this.
github: Option,/// Replaces the auto-generated github link with an external link.
link: Option,
}struct GithubInfo {
username: String,
repo: String,
}enum Category {
Util,
Logging,
Components,
Example,
Styling,
Deployment,
Renderer,
Misc,
}
```