pub struct Text {
pub text: SmolStr,
pub font_size: Option<f32>,
pub font_family: Option<FontFamily>,
pub font_weight: Option<FontWeight>,
pub font_stretch: Option<FontStretch>,
pub font_style: Option<FontStyle>,
pub color: Option<Color>,
pub align: Option<TextAlign>,
pub line_height: Option<f32>,
pub wrap: Option<TextWrap>,
}
Expand description
A view that displays text.
Can be styled using the TextStyle
.
Fields§
§text: SmolStr
The text.
font_size: Option<f32>
The font size of the text.
font_family: Option<FontFamily>
The font family of the text.
font_weight: Option<FontWeight>
The font weight of the text.
font_stretch: Option<FontStretch>
The font stretch of the text.
font_style: Option<FontStyle>
The font.into of the text.
color: Option<Color>
The color of the text.
align: Option<TextAlign>
The horizontal alignment of the text.
line_height: Option<f32>
The line height of the text.
wrap: Option<TextWrap>
The text wrap of the text.
Implementations§
Source§impl Text
impl Text
Sourcepub fn font_size(self, font_size: impl Into<f32>) -> Self
pub fn font_size(self, font_size: impl Into<f32>) -> Self
Set self.font_size
.
The font size of the text.
Sourcepub fn font_family(self, font_family: impl Into<FontFamily>) -> Self
pub fn font_family(self, font_family: impl Into<FontFamily>) -> Self
Set self.font_family
.
The font family of the text.
Sourcepub fn font_weight(self, font_weight: impl Into<FontWeight>) -> Self
pub fn font_weight(self, font_weight: impl Into<FontWeight>) -> Self
Set self.font_weight
.
The font weight of the text.
Sourcepub fn font_stretch(self, font_stretch: impl Into<FontStretch>) -> Self
pub fn font_stretch(self, font_stretch: impl Into<FontStretch>) -> Self
Set self.font_stretch
.
The font stretch of the text.
Sourcepub fn font_style(self, font_style: impl Into<FontStyle>) -> Self
pub fn font_style(self, font_style: impl Into<FontStyle>) -> Self
Set self.font_style
.
The font.into of the text.
Sourcepub fn align(self, align: impl Into<TextAlign>) -> Self
pub fn align(self, align: impl Into<TextAlign>) -> Self
Set self.align
.
The horizontal alignment of the text.
Sourcepub fn line_height(self, line_height: impl Into<f32>) -> Self
pub fn line_height(self, line_height: impl Into<f32>) -> Self
Set self.line_height
.
The line height of the text.
Trait Implementations§
Source§impl<T> View<T> for Text
impl<T> View<T> for Text
Source§type State = (TextStyle, Paragraph)
type State = (TextStyle, Paragraph)
The state of the view, see top-level documentation for more information.
Source§fn build(&mut self, cx: &mut BuildCx<'_, '_>, _data: &mut T) -> Self::State
fn build(&mut self, cx: &mut BuildCx<'_, '_>, _data: &mut T) -> Self::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
(style, paragraph): &mut Self::State,
cx: &mut RebuildCx<'_, '_>,
_data: &mut T,
old: &Self,
)
fn rebuild( &mut self, (style, paragraph): &mut Self::State, cx: &mut RebuildCx<'_, '_>, _data: &mut T, old: &Self, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
_state: &mut Self::State,
_cx: &mut EventCx<'_, '_>,
_data: &mut T,
_event: &Event,
) -> bool
fn event( &mut self, _state: &mut Self::State, _cx: &mut EventCx<'_, '_>, _data: &mut T, _event: &Event, ) -> bool
Handle an event, see top-level documentation for more information.
Auto Trait Implementations§
impl Freeze for Text
impl RefUnwindSafe for Text
impl Send for Text
impl Sync for Text
impl Unpin for Text
impl UnwindSafe for Text
Blanket Implementations§
Source§impl<T, V> AnyView<T> for V
impl<T, V> AnyView<T> for V
Source§fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
Build the view.
Source§fn dyn_rebuild(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &dyn AnyView<T>,
)
fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )
Rebuild the view.
Source§fn dyn_event(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more