Crate egui_custom_frame

Source
Expand description

§egui_custom_frame

Custom your egui client-side window frame.

§Example

// Make sure your window has a transparent background with no decorations
 
// In the update function
egui_custom_frame::CustomFrame::default().show(ctx, |ui| {
   ui.label("Hello World!");
});

Structs§

CustomFrame
A frame that allows you to custom its appearance and behavior