Struct egui::containers::TopBottomPanel[][src]

pub struct TopBottomPanel { /* fields omitted */ }
Expand description

A panel that covers the entire top or bottom of the screen.

The order in which you add panels matter! The first panel you add will always be the outermost, and the last you add will always be the innermost.

Always add any CentralPanel and Window:s last.

egui::TopBottomPanel::top("my_panel").show(ctx, |ui| {
   ui.label("Hello World!");
});

See also SidePanel.

Implementations

id_source: Something unique, e.g. "my_top_panel".

id_source: Something unique, e.g. "my_bottom_panel".

Switch resizable on/off. Default is false.

The initial height of the SidePanel. Defaults to style::Spacing::interact_size.y.

The allowable height range for resizable panels.

Change the background color, margins, etc.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.