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

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

A panel that covers the entire top or bottom of a Ui or 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.

See the module level docs for more details.

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".

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

Can panel be resized by dragging the edge of it?

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.

Show the panel inside a Ui.

Show the panel at the top level.

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.