2022-02-21 14:26:26 +00:00
//! This is a crate that adds some features on top top of [`egui`](https://github.com/emilk/egui). This crate are for experimental features, and features that require big dependencies that does not belong in `egui`.
2022-02-09 11:58:38 +00:00
2022-02-09 11:50:24 +00:00
#![ allow(clippy::float_cmp) ]
#![ allow(clippy::manual_range_contains) ]
2022-02-09 11:56:01 +00:00
#[ cfg(feature = " chrono " ) ]
mod datepicker ;
2022-02-21 14:26:26 +00:00
pub mod image ;
2022-02-09 11:56:01 +00:00
mod layout ;
mod sizing ;
2022-03-15 09:09:19 +00:00
mod strip ;
2022-02-09 11:56:01 +00:00
mod table ;
#[ cfg(feature = " chrono " ) ]
2022-02-27 12:30:29 +00:00
pub use crate ::datepicker ::DatePickerButton ;
2022-02-09 11:56:01 +00:00
2022-02-21 14:26:26 +00:00
pub use crate ::image ::RetainedImage ;
2022-02-27 12:30:29 +00:00
pub ( crate ) use crate ::layout ::Layout ;
pub use crate ::sizing ::Size ;
2022-03-15 09:09:19 +00:00
pub use crate ::strip ::* ;
2022-02-27 12:30:29 +00:00
pub use crate ::table ::* ;