├── .gitattributes ├── .github └── workflows │ ├── additional_checks.yml │ ├── check.yml │ └── deploy.yml ├── .gitignore ├── .typos.toml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── RELEASE.md ├── crates ├── egui_animation │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ └── animations.rs │ └── src │ │ ├── collapse.rs │ │ └── lib.rs ├── egui_dnd │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── custom_ui.rs │ │ ├── dnd_collapsing_header.rs │ │ ├── dnd_filter_items.rs │ │ ├── dnd_infinite_scroll.rs │ │ ├── dnd_virtual_list.rs │ │ ├── horizontal.rs │ │ ├── index_as_id.rs │ │ ├── nested.rs │ │ ├── scene.rs │ │ ├── scroll.rs │ │ ├── simple.rs │ │ ├── sort_words.rs │ │ ├── update_on_drop.rs │ │ └── vertical_centered_justified.rs │ └── src │ │ ├── item.rs │ │ ├── item_iterator.rs │ │ ├── lib.rs │ │ ├── state.rs │ │ └── utils.rs ├── egui_flex │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── button.rs │ │ ├── debug_example.rs │ │ ├── flex_demos.rs │ │ ├── flex_example.rs │ │ ├── flex_scroll.rs │ │ ├── simple_flex_example.rs │ │ └── test.html │ ├── src │ │ ├── flex_widget.rs │ │ └── lib.rs │ └── tests │ │ ├── flex_tests.rs │ │ └── snapshots │ │ ├── basis_stabilize.png │ │ ├── chat.png │ │ ├── egui_justify_interaction.png │ │ ├── nested.png │ │ ├── test_insert_remove_0.png │ │ ├── test_insert_remove_1.png │ │ ├── test_insert_remove_2.png │ │ ├── test_justify_grow_1_false_align_1_FlexAlign__Start.png │ │ ├── test_justify_grow_1_false_align_2_FlexAlign__Center.png │ │ ├── test_justify_grow_1_false_align_3_FlexAlign__End.png │ │ ├── test_justify_grow_1_false_align_4_FlexAlign__Stretch.png │ │ ├── test_justify_grow_2_true_align_1_FlexAlign__Start.png │ │ ├── test_justify_grow_2_true_align_2_FlexAlign__Center.png │ │ ├── test_justify_grow_2_true_align_3_FlexAlign__End.png │ │ ├── test_justify_grow_2_true_align_4_FlexAlign__Stretch.png │ │ ├── test_size_width_1_None_height_1_None.png │ │ ├── test_size_width_1_None_height_2_Some_Size__Points_100_0__.png │ │ ├── test_size_width_1_None_height_3_Some_Size__Percent_0_5__.png │ │ ├── test_size_width_1_None_height_4_Some_Size__Percent_1_0__.png │ │ ├── test_size_width_2_Some_Size__Points_100_0___height_1_None.png │ │ ├── test_size_width_2_Some_Size__Points_100_0___height_2_Some_Size__Points_100_0__.png │ │ ├── test_size_width_2_Some_Size__Points_100_0___height_3_Some_Size__Percent_0_5__.png │ │ ├── test_size_width_2_Some_Size__Points_100_0___height_4_Some_Size__Percent_1_0__.png │ │ ├── test_size_width_3_Some_Size__Percent_0_5___height_1_None.png │ │ ├── test_size_width_3_Some_Size__Percent_0_5___height_2_Some_Size__Points_100_0__.png │ │ ├── test_size_width_3_Some_Size__Percent_0_5___height_3_Some_Size__Percent_0_5__.png │ │ ├── test_size_width_3_Some_Size__Percent_0_5___height_4_Some_Size__Percent_1_0__.png │ │ ├── test_size_width_4_Some_Size__Percent_1_0___height_1_None.png │ │ ├── test_size_width_4_Some_Size__Percent_1_0___height_2_Some_Size__Points_100_0__.png │ │ ├── test_size_width_4_Some_Size__Percent_1_0___height_3_Some_Size__Percent_0_5__.png │ │ ├── test_size_width_4_Some_Size__Percent_1_0___height_4_Some_Size__Percent_1_0__.png │ │ ├── truncate_shrink_0_short.png │ │ ├── truncate_shrink_1_long.png │ │ └── truncate_shrink_2_short.png ├── egui_form │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── egui_form_minimal.rs │ │ ├── garde.rs │ │ └── validator.rs │ ├── screenshot.png │ └── src │ │ ├── form.rs │ │ ├── form_field.rs │ │ ├── garde.rs │ │ ├── lib.rs │ │ ├── validation_report.rs │ │ └── validator.rs ├── egui_inbox │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── broadcast.rs │ │ ├── inbox.rs │ │ ├── inbox_http.rs │ │ ├── inbox_spawn.rs │ │ ├── router_login.rs │ │ ├── stop_async_task.rs │ │ └── without_egui.rs │ └── src │ │ ├── broadcast.rs │ │ ├── lib.rs │ │ ├── type_broadcast.rs │ │ └── type_inbox.rs ├── egui_infinite_scroll │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── infinite_scroll_async.rs │ │ ├── infinite_scroll_both_directions.rs │ │ ├── infinite_scroll_example.rs │ │ ├── infinite_scroll_retry.rs │ │ └── infinite_scroll_table.rs │ └── src │ │ └── lib.rs ├── egui_material_icons │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── MaterialSymbolsRounded-Regular.codepoints │ ├── MaterialSymbolsRounded-Regular.ttf │ ├── MaterialSymbolsRounded_Filled-Regular.ttf │ ├── README.md │ ├── examples │ │ └── icon-browser.rs │ ├── gen_codepoints.rs │ └── src │ │ ├── icons.rs │ │ └── lib.rs ├── egui_pull_to_refresh │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── dad_joke.rs │ │ ├── pull_refresh_minimal.rs │ │ └── pull_refresh_scroll_area.rs │ └── src │ │ ├── lib.rs │ │ └── progress_spinner.rs ├── egui_router │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── async_router.rs │ │ ├── router.rs │ │ └── router_minimal.rs │ └── src │ │ ├── async_route.rs │ │ ├── handler.rs │ │ ├── history │ │ ├── browser.rs │ │ ├── memory.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── route_kind.rs │ │ ├── router.rs │ │ ├── router_builder.rs │ │ └── transition.rs ├── egui_suspense │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── async.rs │ │ ├── customization.rs │ │ ├── suspense.rs │ │ └── suspense_minimal.rs │ └── src │ │ └── lib.rs ├── egui_taffy │ └── README.md ├── egui_thumbhash │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ └── thumbhash.rs │ └── src │ │ ├── image.rs │ │ └── lib.rs ├── egui_virtual_list │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── virtual_list_example.rs │ │ └── virtual_list_stable_id_test.rs │ └── src │ │ └── lib.rs ├── egui_webview │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── native_text_field.rs │ │ └── webview.rs │ └── src │ │ ├── lib.rs │ │ ├── native_text_field.html │ │ ├── native_text_field.rs │ │ └── webview.js ├── hello_egui_utils │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── center.rs │ │ └── lib.rs ├── hello_egui_utils_dev │ ├── Cargo.toml │ └── src │ │ ├── example.rs │ │ └── lib.rs └── perfect_cursors │ ├── Cargo.toml │ ├── README.md │ ├── examples │ └── perfect_cursors_egui.rs │ └── src │ ├── lib.rs │ └── spline.rs ├── fancy-example ├── Cargo.toml ├── index.html ├── src │ ├── bin │ │ └── download_gallery_images.rs │ ├── chat.rs │ ├── chat.txt │ ├── chat_history.txt │ ├── color_sort.rs │ ├── crate_ui.rs │ ├── egui.png │ ├── example.rs │ ├── flex.rs │ ├── futures.rs │ ├── gallery.rs │ ├── gallery │ │ ├── 240339.webp │ │ ├── 240759.webp │ │ ├── 241069.webp │ │ ├── 241072.webp │ │ ├── 241099.webp │ │ ├── 241153.webp │ │ ├── 241355.webp │ │ ├── 241475.webp │ │ ├── 242038.webp │ │ ├── 242416.webp │ │ ├── 242632.webp │ │ ├── 243243.webp │ │ ├── 243280.webp │ │ ├── 243590.webp │ │ ├── 243598.webp │ │ ├── 244077.webp │ │ ├── 244078.webp │ │ ├── 244080.webp │ │ ├── 244225.webp │ │ ├── 244306.webp │ │ ├── 244308.webp │ │ ├── 244514.webp │ │ ├── 244735.webp │ │ ├── 245041.webp │ │ ├── 245242.webp │ │ ├── 245245.webp │ │ ├── 245248.webp │ │ ├── 245335.webp │ │ ├── 245371.webp │ │ ├── 245488.webp │ │ ├── 245570.webp │ │ ├── 245585.webp │ │ ├── 245614.webp │ │ ├── 245832.webp │ │ ├── 245834.webp │ │ ├── 245888.webp │ │ ├── 246435.webp │ │ ├── 246443.webp │ │ ├── 246795.webp │ │ ├── 246894.webp │ │ ├── 246943.webp │ │ ├── 246954.webp │ │ ├── 247595.webp │ │ ├── 247942.webp │ │ ├── 248219.webp │ │ ├── 248274.webp │ │ ├── 248491.webp │ │ ├── 248695.webp │ │ ├── 248801.webp │ │ ├── 248929.webp │ │ ├── 248965.webp │ │ ├── 249139.webp │ │ ├── 249207.webp │ │ ├── 249308.webp │ │ ├── 249311.webp │ │ ├── 249597.webp │ │ ├── 249609.webp │ │ ├── 249635.webp │ │ ├── 249652.webp │ │ ├── 250002.webp │ │ ├── 250045.webp │ │ ├── 250504.webp │ │ ├── 250554.webp │ │ ├── 250576.webp │ │ ├── 250730.webp │ │ ├── 250877.webp │ │ ├── 251051.webp │ │ ├── 251099.webp │ │ ├── 251126.webp │ │ ├── 251319.webp │ │ ├── 251323.webp │ │ ├── 251367.webp │ │ ├── 251487.webp │ │ ├── 251574.webp │ │ ├── 251656.webp │ │ ├── 251677.webp │ │ ├── 252395.webp │ │ ├── 252443.webp │ │ ├── 252850.webp │ │ ├── 253017.webp │ │ ├── 253051.webp │ │ ├── 253069.webp │ │ ├── 253136.webp │ │ ├── 253754.webp │ │ ├── 254433.webp │ │ ├── 254569.webp │ │ ├── 254582.webp │ │ ├── 254732.webp │ │ ├── 257047.webp │ │ ├── 257188.webp │ │ ├── 257193.webp │ │ ├── 257227.webp │ │ ├── 257274.webp │ │ ├── 257402.webp │ │ ├── 257868.webp │ │ ├── 258592.webp │ │ ├── 258899.webp │ │ ├── 259132.webp │ │ ├── 259525.webp │ │ ├── 259594.webp │ │ └── index.json │ ├── lib.rs │ ├── main.rs │ ├── routes.rs │ ├── shared_state.rs │ ├── sidebar.rs │ ├── signup_form.rs │ └── stargazers.rs └── tests │ ├── fancy_example.rs │ └── snapshots │ ├── chat.png │ ├── example │ ├── color_sort_vertical.png │ ├── color_sort_wrapped.png │ ├── flex.png │ ├── gallery.png │ ├── signup_form.png │ └── stargazers.png │ ├── gallery.png │ └── stargazers.png ├── rust-toolchain.toml ├── rustfmt.toml ├── scripts ├── Cargo.toml ├── badges_template.md ├── release.sh └── src │ └── bin │ ├── update_badges.rs │ └── update_changelogs.rs └── src └── lib.rs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/additional_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/.github/workflows/additional_checks.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/.gitignore -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/.typos.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/RELEASE.md -------------------------------------------------------------------------------- /crates/egui_animation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_animation/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_animation/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_animation/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_animation/README.md -------------------------------------------------------------------------------- /crates/egui_animation/examples/animations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_animation/examples/animations.rs -------------------------------------------------------------------------------- /crates/egui_animation/src/collapse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_animation/src/collapse.rs -------------------------------------------------------------------------------- /crates/egui_animation/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_animation/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_dnd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_dnd/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_dnd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/README.md -------------------------------------------------------------------------------- /crates/egui_dnd/examples/custom_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/custom_ui.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/dnd_collapsing_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/dnd_collapsing_header.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/dnd_filter_items.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/dnd_filter_items.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/dnd_infinite_scroll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/dnd_infinite_scroll.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/dnd_virtual_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/dnd_virtual_list.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/horizontal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/horizontal.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/index_as_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/index_as_id.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/nested.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/nested.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/scene.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/scene.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/scroll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/scroll.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/simple.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/sort_words.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/sort_words.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/update_on_drop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/update_on_drop.rs -------------------------------------------------------------------------------- /crates/egui_dnd/examples/vertical_centered_justified.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/examples/vertical_centered_justified.rs -------------------------------------------------------------------------------- /crates/egui_dnd/src/item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/src/item.rs -------------------------------------------------------------------------------- /crates/egui_dnd/src/item_iterator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/src/item_iterator.rs -------------------------------------------------------------------------------- /crates/egui_dnd/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_dnd/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/src/state.rs -------------------------------------------------------------------------------- /crates/egui_dnd/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_dnd/src/utils.rs -------------------------------------------------------------------------------- /crates/egui_flex/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_flex/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_flex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/README.md -------------------------------------------------------------------------------- /crates/egui_flex/examples/button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/examples/button.rs -------------------------------------------------------------------------------- /crates/egui_flex/examples/debug_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/examples/debug_example.rs -------------------------------------------------------------------------------- /crates/egui_flex/examples/flex_demos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/examples/flex_demos.rs -------------------------------------------------------------------------------- /crates/egui_flex/examples/flex_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/examples/flex_example.rs -------------------------------------------------------------------------------- /crates/egui_flex/examples/flex_scroll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/examples/flex_scroll.rs -------------------------------------------------------------------------------- /crates/egui_flex/examples/simple_flex_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/examples/simple_flex_example.rs -------------------------------------------------------------------------------- /crates/egui_flex/examples/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/examples/test.html -------------------------------------------------------------------------------- /crates/egui_flex/src/flex_widget.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/src/flex_widget.rs -------------------------------------------------------------------------------- /crates/egui_flex/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_flex/tests/flex_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/flex_tests.rs -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/basis_stabilize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/basis_stabilize.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/chat.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/egui_justify_interaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/egui_justify_interaction.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/nested.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_insert_remove_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_insert_remove_0.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_insert_remove_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_insert_remove_1.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_insert_remove_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_insert_remove_2.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_justify_grow_1_false_align_1_FlexAlign__Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_justify_grow_1_false_align_1_FlexAlign__Start.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_justify_grow_1_false_align_2_FlexAlign__Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_justify_grow_1_false_align_2_FlexAlign__Center.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_justify_grow_1_false_align_3_FlexAlign__End.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_justify_grow_1_false_align_3_FlexAlign__End.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_justify_grow_1_false_align_4_FlexAlign__Stretch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_justify_grow_1_false_align_4_FlexAlign__Stretch.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_justify_grow_2_true_align_1_FlexAlign__Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_justify_grow_2_true_align_1_FlexAlign__Start.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_justify_grow_2_true_align_2_FlexAlign__Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_justify_grow_2_true_align_2_FlexAlign__Center.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_justify_grow_2_true_align_3_FlexAlign__End.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_justify_grow_2_true_align_3_FlexAlign__End.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_justify_grow_2_true_align_4_FlexAlign__Stretch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_justify_grow_2_true_align_4_FlexAlign__Stretch.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_1_None_height_1_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_1_None_height_1_None.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_1_None_height_2_Some_Size__Points_100_0__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_1_None_height_2_Some_Size__Points_100_0__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_1_None_height_3_Some_Size__Percent_0_5__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_1_None_height_3_Some_Size__Percent_0_5__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_1_None_height_4_Some_Size__Percent_1_0__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_1_None_height_4_Some_Size__Percent_1_0__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_2_Some_Size__Points_100_0___height_1_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_2_Some_Size__Points_100_0___height_1_None.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_2_Some_Size__Points_100_0___height_2_Some_Size__Points_100_0__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_2_Some_Size__Points_100_0___height_2_Some_Size__Points_100_0__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_2_Some_Size__Points_100_0___height_3_Some_Size__Percent_0_5__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_2_Some_Size__Points_100_0___height_3_Some_Size__Percent_0_5__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_2_Some_Size__Points_100_0___height_4_Some_Size__Percent_1_0__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_2_Some_Size__Points_100_0___height_4_Some_Size__Percent_1_0__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_3_Some_Size__Percent_0_5___height_1_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_3_Some_Size__Percent_0_5___height_1_None.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_3_Some_Size__Percent_0_5___height_2_Some_Size__Points_100_0__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_3_Some_Size__Percent_0_5___height_2_Some_Size__Points_100_0__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_3_Some_Size__Percent_0_5___height_3_Some_Size__Percent_0_5__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_3_Some_Size__Percent_0_5___height_3_Some_Size__Percent_0_5__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_3_Some_Size__Percent_0_5___height_4_Some_Size__Percent_1_0__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_3_Some_Size__Percent_0_5___height_4_Some_Size__Percent_1_0__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_4_Some_Size__Percent_1_0___height_1_None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_4_Some_Size__Percent_1_0___height_1_None.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_4_Some_Size__Percent_1_0___height_2_Some_Size__Points_100_0__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_4_Some_Size__Percent_1_0___height_2_Some_Size__Points_100_0__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_4_Some_Size__Percent_1_0___height_3_Some_Size__Percent_0_5__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_4_Some_Size__Percent_1_0___height_3_Some_Size__Percent_0_5__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/test_size_width_4_Some_Size__Percent_1_0___height_4_Some_Size__Percent_1_0__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/test_size_width_4_Some_Size__Percent_1_0___height_4_Some_Size__Percent_1_0__.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/truncate_shrink_0_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/truncate_shrink_0_short.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/truncate_shrink_1_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/truncate_shrink_1_long.png -------------------------------------------------------------------------------- /crates/egui_flex/tests/snapshots/truncate_shrink_2_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_flex/tests/snapshots/truncate_shrink_2_short.png -------------------------------------------------------------------------------- /crates/egui_form/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_form/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/README.md -------------------------------------------------------------------------------- /crates/egui_form/examples/egui_form_minimal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/examples/egui_form_minimal.rs -------------------------------------------------------------------------------- /crates/egui_form/examples/garde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/examples/garde.rs -------------------------------------------------------------------------------- /crates/egui_form/examples/validator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/examples/validator.rs -------------------------------------------------------------------------------- /crates/egui_form/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/screenshot.png -------------------------------------------------------------------------------- /crates/egui_form/src/form.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/src/form.rs -------------------------------------------------------------------------------- /crates/egui_form/src/form_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/src/form_field.rs -------------------------------------------------------------------------------- /crates/egui_form/src/garde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/src/garde.rs -------------------------------------------------------------------------------- /crates/egui_form/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_form/src/validation_report.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/src/validation_report.rs -------------------------------------------------------------------------------- /crates/egui_form/src/validator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_form/src/validator.rs -------------------------------------------------------------------------------- /crates/egui_inbox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_inbox/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_inbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/README.md -------------------------------------------------------------------------------- /crates/egui_inbox/examples/broadcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/examples/broadcast.rs -------------------------------------------------------------------------------- /crates/egui_inbox/examples/inbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/examples/inbox.rs -------------------------------------------------------------------------------- /crates/egui_inbox/examples/inbox_http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/examples/inbox_http.rs -------------------------------------------------------------------------------- /crates/egui_inbox/examples/inbox_spawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/examples/inbox_spawn.rs -------------------------------------------------------------------------------- /crates/egui_inbox/examples/router_login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/examples/router_login.rs -------------------------------------------------------------------------------- /crates/egui_inbox/examples/stop_async_task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/examples/stop_async_task.rs -------------------------------------------------------------------------------- /crates/egui_inbox/examples/without_egui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/examples/without_egui.rs -------------------------------------------------------------------------------- /crates/egui_inbox/src/broadcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/src/broadcast.rs -------------------------------------------------------------------------------- /crates/egui_inbox/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_inbox/src/type_broadcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/src/type_broadcast.rs -------------------------------------------------------------------------------- /crates/egui_inbox/src/type_inbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_inbox/src/type_inbox.rs -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/README.md -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/examples/infinite_scroll_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/examples/infinite_scroll_async.rs -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/examples/infinite_scroll_both_directions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/examples/infinite_scroll_both_directions.rs -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/examples/infinite_scroll_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/examples/infinite_scroll_example.rs -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/examples/infinite_scroll_retry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/examples/infinite_scroll_retry.rs -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/examples/infinite_scroll_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/examples/infinite_scroll_table.rs -------------------------------------------------------------------------------- /crates/egui_infinite_scroll/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_infinite_scroll/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_material_icons/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_material_icons/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_material_icons/MaterialSymbolsRounded-Regular.codepoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/MaterialSymbolsRounded-Regular.codepoints -------------------------------------------------------------------------------- /crates/egui_material_icons/MaterialSymbolsRounded-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/MaterialSymbolsRounded-Regular.ttf -------------------------------------------------------------------------------- /crates/egui_material_icons/MaterialSymbolsRounded_Filled-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/MaterialSymbolsRounded_Filled-Regular.ttf -------------------------------------------------------------------------------- /crates/egui_material_icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/README.md -------------------------------------------------------------------------------- /crates/egui_material_icons/examples/icon-browser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/examples/icon-browser.rs -------------------------------------------------------------------------------- /crates/egui_material_icons/gen_codepoints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/gen_codepoints.rs -------------------------------------------------------------------------------- /crates/egui_material_icons/src/icons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/src/icons.rs -------------------------------------------------------------------------------- /crates/egui_material_icons/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_material_icons/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_pull_to_refresh/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_pull_to_refresh/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_pull_to_refresh/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_pull_to_refresh/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_pull_to_refresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_pull_to_refresh/README.md -------------------------------------------------------------------------------- /crates/egui_pull_to_refresh/examples/dad_joke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_pull_to_refresh/examples/dad_joke.rs -------------------------------------------------------------------------------- /crates/egui_pull_to_refresh/examples/pull_refresh_minimal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_pull_to_refresh/examples/pull_refresh_minimal.rs -------------------------------------------------------------------------------- /crates/egui_pull_to_refresh/examples/pull_refresh_scroll_area.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_pull_to_refresh/examples/pull_refresh_scroll_area.rs -------------------------------------------------------------------------------- /crates/egui_pull_to_refresh/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_pull_to_refresh/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_pull_to_refresh/src/progress_spinner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_pull_to_refresh/src/progress_spinner.rs -------------------------------------------------------------------------------- /crates/egui_router/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_router/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/README.md -------------------------------------------------------------------------------- /crates/egui_router/examples/async_router.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/examples/async_router.rs -------------------------------------------------------------------------------- /crates/egui_router/examples/router.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/examples/router.rs -------------------------------------------------------------------------------- /crates/egui_router/examples/router_minimal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/examples/router_minimal.rs -------------------------------------------------------------------------------- /crates/egui_router/src/async_route.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/async_route.rs -------------------------------------------------------------------------------- /crates/egui_router/src/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/handler.rs -------------------------------------------------------------------------------- /crates/egui_router/src/history/browser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/history/browser.rs -------------------------------------------------------------------------------- /crates/egui_router/src/history/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/history/memory.rs -------------------------------------------------------------------------------- /crates/egui_router/src/history/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/history/mod.rs -------------------------------------------------------------------------------- /crates/egui_router/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_router/src/route_kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/route_kind.rs -------------------------------------------------------------------------------- /crates/egui_router/src/router.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/router.rs -------------------------------------------------------------------------------- /crates/egui_router/src/router_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/router_builder.rs -------------------------------------------------------------------------------- /crates/egui_router/src/transition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_router/src/transition.rs -------------------------------------------------------------------------------- /crates/egui_suspense/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_suspense/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_suspense/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_suspense/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_suspense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_suspense/README.md -------------------------------------------------------------------------------- /crates/egui_suspense/examples/async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_suspense/examples/async.rs -------------------------------------------------------------------------------- /crates/egui_suspense/examples/customization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_suspense/examples/customization.rs -------------------------------------------------------------------------------- /crates/egui_suspense/examples/suspense.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_suspense/examples/suspense.rs -------------------------------------------------------------------------------- /crates/egui_suspense/examples/suspense_minimal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_suspense/examples/suspense_minimal.rs -------------------------------------------------------------------------------- /crates/egui_suspense/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_suspense/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_taffy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_taffy/README.md -------------------------------------------------------------------------------- /crates/egui_thumbhash/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_thumbhash/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_thumbhash/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_thumbhash/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_thumbhash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_thumbhash/README.md -------------------------------------------------------------------------------- /crates/egui_thumbhash/examples/thumbhash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_thumbhash/examples/thumbhash.rs -------------------------------------------------------------------------------- /crates/egui_thumbhash/src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_thumbhash/src/image.rs -------------------------------------------------------------------------------- /crates/egui_thumbhash/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_thumbhash/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_virtual_list/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_virtual_list/CHANGELOG.md -------------------------------------------------------------------------------- /crates/egui_virtual_list/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_virtual_list/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_virtual_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_virtual_list/README.md -------------------------------------------------------------------------------- /crates/egui_virtual_list/examples/virtual_list_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_virtual_list/examples/virtual_list_example.rs -------------------------------------------------------------------------------- /crates/egui_virtual_list/examples/virtual_list_stable_id_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_virtual_list/examples/virtual_list_stable_id_test.rs -------------------------------------------------------------------------------- /crates/egui_virtual_list/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_virtual_list/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_webview/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_webview/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_webview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_webview/README.md -------------------------------------------------------------------------------- /crates/egui_webview/examples/native_text_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_webview/examples/native_text_field.rs -------------------------------------------------------------------------------- /crates/egui_webview/examples/webview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_webview/examples/webview.rs -------------------------------------------------------------------------------- /crates/egui_webview/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_webview/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_webview/src/native_text_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_webview/src/native_text_field.html -------------------------------------------------------------------------------- /crates/egui_webview/src/native_text_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_webview/src/native_text_field.rs -------------------------------------------------------------------------------- /crates/egui_webview/src/webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/egui_webview/src/webview.js -------------------------------------------------------------------------------- /crates/hello_egui_utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/hello_egui_utils/CHANGELOG.md -------------------------------------------------------------------------------- /crates/hello_egui_utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/hello_egui_utils/Cargo.toml -------------------------------------------------------------------------------- /crates/hello_egui_utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/hello_egui_utils/README.md -------------------------------------------------------------------------------- /crates/hello_egui_utils/src/center.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/hello_egui_utils/src/center.rs -------------------------------------------------------------------------------- /crates/hello_egui_utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/hello_egui_utils/src/lib.rs -------------------------------------------------------------------------------- /crates/hello_egui_utils_dev/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/hello_egui_utils_dev/Cargo.toml -------------------------------------------------------------------------------- /crates/hello_egui_utils_dev/src/example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/hello_egui_utils_dev/src/example.rs -------------------------------------------------------------------------------- /crates/hello_egui_utils_dev/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/hello_egui_utils_dev/src/lib.rs -------------------------------------------------------------------------------- /crates/perfect_cursors/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/perfect_cursors/Cargo.toml -------------------------------------------------------------------------------- /crates/perfect_cursors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/perfect_cursors/README.md -------------------------------------------------------------------------------- /crates/perfect_cursors/examples/perfect_cursors_egui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/perfect_cursors/examples/perfect_cursors_egui.rs -------------------------------------------------------------------------------- /crates/perfect_cursors/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/perfect_cursors/src/lib.rs -------------------------------------------------------------------------------- /crates/perfect_cursors/src/spline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/crates/perfect_cursors/src/spline.rs -------------------------------------------------------------------------------- /fancy-example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/Cargo.toml -------------------------------------------------------------------------------- /fancy-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/index.html -------------------------------------------------------------------------------- /fancy-example/src/bin/download_gallery_images.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/bin/download_gallery_images.rs -------------------------------------------------------------------------------- /fancy-example/src/chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/chat.rs -------------------------------------------------------------------------------- /fancy-example/src/chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/chat.txt -------------------------------------------------------------------------------- /fancy-example/src/chat_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/chat_history.txt -------------------------------------------------------------------------------- /fancy-example/src/color_sort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/color_sort.rs -------------------------------------------------------------------------------- /fancy-example/src/crate_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/crate_ui.rs -------------------------------------------------------------------------------- /fancy-example/src/egui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/egui.png -------------------------------------------------------------------------------- /fancy-example/src/example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/example.rs -------------------------------------------------------------------------------- /fancy-example/src/flex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/flex.rs -------------------------------------------------------------------------------- /fancy-example/src/futures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/futures.rs -------------------------------------------------------------------------------- /fancy-example/src/gallery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery.rs -------------------------------------------------------------------------------- /fancy-example/src/gallery/240339.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/240339.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/240759.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/240759.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/241069.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/241069.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/241072.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/241072.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/241099.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/241099.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/241153.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/241153.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/241355.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/241355.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/241475.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/241475.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/242038.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/242038.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/242416.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/242416.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/242632.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/242632.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/243243.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/243243.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/243280.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/243280.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/243590.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/243590.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/243598.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/243598.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/244077.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/244077.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/244078.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/244078.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/244080.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/244080.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/244225.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/244225.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/244306.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/244306.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/244308.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/244308.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/244514.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/244514.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/244735.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/244735.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245041.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245041.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245242.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245242.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245245.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245245.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245248.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245248.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245335.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245335.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245371.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245371.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245488.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245488.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245570.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245570.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245585.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245585.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245614.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245614.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245832.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245832.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245834.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245834.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/245888.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/245888.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/246435.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/246435.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/246443.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/246443.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/246795.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/246795.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/246894.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/246894.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/246943.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/246943.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/246954.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/246954.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/247595.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/247595.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/247942.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/247942.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/248219.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/248219.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/248274.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/248274.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/248491.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/248491.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/248695.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/248695.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/248801.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/248801.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/248929.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/248929.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/248965.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/248965.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/249139.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/249139.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/249207.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/249207.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/249308.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/249308.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/249311.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/249311.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/249597.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/249597.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/249609.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/249609.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/249635.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/249635.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/249652.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/249652.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/250002.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/250002.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/250045.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/250045.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/250504.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/250504.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/250554.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/250554.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/250576.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/250576.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/250730.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/250730.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/250877.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/250877.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251051.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251051.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251099.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251099.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251126.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251126.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251319.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251319.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251323.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251323.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251367.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251367.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251487.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251487.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251574.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251574.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251656.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251656.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/251677.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/251677.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/252395.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/252395.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/252443.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/252443.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/252850.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/252850.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/253017.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/253017.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/253051.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/253051.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/253069.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/253069.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/253136.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/253136.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/253754.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/253754.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/254433.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/254433.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/254569.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/254569.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/254582.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/254582.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/254732.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/254732.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/257047.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/257047.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/257188.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/257188.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/257193.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/257193.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/257227.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/257227.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/257274.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/257274.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/257402.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/257402.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/257868.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/257868.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/258592.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/258592.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/258899.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/258899.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/259132.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/259132.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/259525.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/259525.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/259594.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/259594.webp -------------------------------------------------------------------------------- /fancy-example/src/gallery/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/gallery/index.json -------------------------------------------------------------------------------- /fancy-example/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/lib.rs -------------------------------------------------------------------------------- /fancy-example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/main.rs -------------------------------------------------------------------------------- /fancy-example/src/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/routes.rs -------------------------------------------------------------------------------- /fancy-example/src/shared_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/shared_state.rs -------------------------------------------------------------------------------- /fancy-example/src/sidebar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/sidebar.rs -------------------------------------------------------------------------------- /fancy-example/src/signup_form.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/signup_form.rs -------------------------------------------------------------------------------- /fancy-example/src/stargazers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/src/stargazers.rs -------------------------------------------------------------------------------- /fancy-example/tests/fancy_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/fancy_example.rs -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/chat.png -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/example/color_sort_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/example/color_sort_vertical.png -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/example/color_sort_wrapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/example/color_sort_wrapped.png -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/example/flex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/example/flex.png -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/example/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/example/gallery.png -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/example/signup_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/example/signup_form.png -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/example/stargazers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/example/stargazers.png -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/gallery.png -------------------------------------------------------------------------------- /fancy-example/tests/snapshots/stargazers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/fancy-example/tests/snapshots/stargazers.png -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | format_code_in_doc_comments = true 2 | -------------------------------------------------------------------------------- /scripts/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/scripts/Cargo.toml -------------------------------------------------------------------------------- /scripts/badges_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/scripts/badges_template.md -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/src/bin/update_badges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/scripts/src/bin/update_badges.rs -------------------------------------------------------------------------------- /scripts/src/bin/update_changelogs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/scripts/src/bin/update_changelogs.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmerlin/hello_egui/HEAD/src/lib.rs --------------------------------------------------------------------------------