iced-yoda/graphics/src/widget/text.rs

8 lines
235 B
Rust
Raw Normal View History

2020-05-19 17:15:44 +02:00
//! 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<Backend> = iced_native::Text<Renderer<Backend>>;