blob: 43516fca14372fd2467aa1f9ab1816a718f05c88 (
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::widget::Text<Renderer<Backend>>;
|