Registry / utility / egui-extras

egui-extras

JSON →
library0.34.3rscratesunverified

Extra functionality and widgets for the egui GUI library.

# Cargo.toml [dependencies] egui_extras = "0.34.3"
INSTALL
IMPORT
SIG · EGUI-EXTRAS
E
egui-extras
utilityrustv0.34.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

TableBuilder
use egui_extras::TableBuilder;

Creates a table with a header and rows using egui_extras.

use egui_extras::TableBuilder; fn show_table(ui: &mut egui::Ui) { TableBuilder::new(ui) .column(egui_extras::Column::auto()) .header(20.0, |mut header| { header.col(|ui| { ui.label("Name"); }); }) .body(|body| { body.row(30.0, |mut row| { row.col(|ui| { ui.label("Alice"); }); }); }); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.34.3latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
egui-extras — cargo add egui-extras · libregistry