Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Bottom Panel - Status Bar
- egui::TopBottomPanel::bottom("status_bar").show(ctx, |ui| {
- // Horizontal Layout
- ui.horizontal(|hor| {
- // Left Align
- hor.with_layout(Layout::default().with_cross_align(Align::LEFT),
- |l| {
- functions::Func::powered_by_egui_and_eframe(l);
- });
- // Right Align
- hor.with_layout(Layout::default().with_cross_align(Align::RIGHT),
- |r|{
- global_dark_light_mode_buttons(r);
- })
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement