egui_field_editor 0.6.0

Easily creating UI to edit and preview data
Documentation
1
2
3
4
5
6
7
8
9
10
11
include!("shared/hashmap.rs");

fn main() {
	let app = MyApp::default();
	let options = eframe::NativeOptions::default();
	let _ = eframe::run_native(
		"Egui Field Editor - HashMap Example",
		options,
		Box::new(|_cc| Ok(Box::new(app))),
	);
}