logo
1
2
3
4
5
6
7
8
/// Representing alternative horizontal text alignments for `TextStyle` implementations.
///
pub enum TextAlign {
    Justify,
    Left,
    Center,
    Right,
}