1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 22:00:03 -04:00

Add Floating and Frame containers as building blocks for windows

This commit is contained in:
Emil Ernerfeldt
2020-04-25 15:26:24 +02:00
parent 3a430c8fc7
commit e26d08851f
8 changed files with 212 additions and 17 deletions

View File

@@ -11,8 +11,10 @@ pub mod color;
mod context;
mod emigui;
pub mod example_app;
mod floating;
mod font;
mod fonts;
mod frame;
mod id;
mod layers;
mod layout;
@@ -33,7 +35,9 @@ pub use {
collapsing_header::CollapsingHeader,
color::Color,
context::Context,
floating::Floating,
fonts::{FontDefinitions, Fonts, TextStyle},
frame::Frame,
id::Id,
layers::*,
layout::{Align, GuiResponse},