Skip to main content

fluent_app/
lib.rs

1mod app_builder;
2mod assets;
3mod chrome;
4mod title_bar;
5
6pub use app_builder::{title_bar, FluentApp};
7pub use assets::FluentAssets;
8pub use chrome::{wrap_with_chrome, WindowChrome};
9pub use title_bar::TitleBar;