Write documentation for iced_glow

This commit is contained in:
Héctor Ramón Jiménez 2020-05-28 01:46:17 +02:00
parent 2ca7e3c4b0
commit b9d42a45a8
5 changed files with 22 additions and 12 deletions

View file

@ -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>;