We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3a633d commit 1eacc54Copy full SHA for 1eacc54
1 file changed
crates/project_graph/src/app.rs
@@ -119,6 +119,15 @@ impl eframe::App for MyApp {
119
ui.separator();
120
});
121
122
+ egui::TopBottomPanel::bottom("bottom_panel")
123
+ .resizable(true)
124
+ .default_height(200.0)
125
+ .height_range(150.0..=500.0)
126
+ .show(ctx, |ui| {
127
+ ui.heading("Terminal");
128
+ ui.separator();
129
+ });
130
+
131
egui::CentralPanel::default().show(ctx, |ui| {
132
self.stage.ui(ui);
133
0 commit comments