-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add readme for hello_egui and rename crates
- Loading branch information
1 parent
032e17b
commit 9071d53
Showing
26 changed files
with
74 additions
and
30 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Hello Egui! | ||
This projects contains a collection of egui tools I've created during | ||
development of the native app for https://hellopaint.io (still unreleased, stay tuned!). | ||
|
||
The crates have varying levels of maturity, some are ready for use in production | ||
while others are highly experimental. | ||
If you're interested in using one of the experimental crates, open an issue, and I'll try to | ||
release it on crates.io. | ||
|
||
## Example app | ||
An example using most of the crates is available [here](https://lucasmerlin.github.io/egui_dnd/). | ||
Source code in [fancy-example](fancy-example). | ||
|
||
## **Mature** Crates | ||
- [egui_dnd](crates/egui_dnd) | ||
- Drag & drop sorting library for egui | ||
- released on [crates.io](https://crates.io/crates/egui_dnd) | ||
|
||
## **Experimental** Crates | ||
|
||
- [egui_virtual_list](crates/egui_virtual_list) | ||
- Flexible virtual scroll widget for egui with support for dynamic heights and complex layouts | ||
- Compatible with [egui_dnd](crates/egui_dnd) (let me know if you need an example) | ||
- Experimental, unreleased | ||
|
||
- [egui_infinite_scroll](crates/egui_infinite_scroll) | ||
- Infinite scroll based on [egui_virtual_list](crates/egui_virtual_list) | ||
- Experimental, unreleased | ||
|
||
- [egui_animation](crates/egui_animation) | ||
- Animation utilities for egui | ||
- Experimental, used internally by [egui_dnd](crates/egui_dnd) | ||
|
||
- [egui_taffy](crates/egui_taffy) | ||
- Adds flexbox layout to egui using [taffy](https://github.com/DioxusLabs/taffy) | ||
- Highly experimental, unreleased | ||
|
||
- [egui_inbox](crates/egui_inbox) | ||
- Simple utility for sending messages to egui uis from other threads / async functions | ||
|
||
- [hello_egui_utils](crates/hello_egui_utils) | ||
- Collection of utilities used by the other crates |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "egui-taffy" | ||
name = "egui_taffy" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
|
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
crates/egui_goodies_utils/Cargo.toml → crates/hello_egui_utils/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "egui_goodies_utils" | ||
name = "hello_egui_utils" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters