1 2 3 4 5 6 7 8 9 10
pub struct FloatingLabelAlignment(pub f32);
impl FloatingLabelAlignment {
// Aligns the floating label to the center of an InputDecorator.
pub const CENTER: FloatingLabelAlignment = FloatingLabelAlignment(0.0);
// Align the floating label on the leading edge of the InputDecorator.
pub const START: FloatingLabelAlignment = FloatingLabelAlignment(-1.0);
}