iced-yoda/wgpu/src/widget/text.rs
2020-04-23 22:17:11 +02:00

7 lines
217 B
Rust

//! Write some text for your users to read.
use crate::Renderer;
/// A paragraph of text.
///
/// This is an alias of an `iced_native` text with an `iced_wgpu::Renderer`.
pub type Text = iced_native::Text<Renderer>;