Write documentation for iced_glow
This commit is contained in:
parent
2ca7e3c4b0
commit
b9d42a45a8
5 changed files with 22 additions and 12 deletions
|
|
@ -48,6 +48,11 @@ pub use canvas::Canvas;
|
|||
|
||||
pub use iced_native::{Image, Space};
|
||||
|
||||
/// A container that distributes its contents vertically.
|
||||
pub type Column<'a, Message> = iced_native::Column<'a, Message, Renderer>;
|
||||
|
||||
/// A container that distributes its contents horizontally.
|
||||
pub type Row<'a, Message> = iced_native::Row<'a, Message, Renderer>;
|
||||
|
||||
/// A paragraph of text.
|
||||
pub type Text = iced_native::Text<Renderer>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue