blob: ec0349f9e2b598f271801a0ed151f31296ce77c5 (
plain) (
blame)
1
2
3
4
5
6
7
|
//! 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>>;
|