blob: 1053ea97640b7892f392da14fc104e13152c3314 (
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 = iced_native::Text<Renderer>;
|