logo
1
2
3
4
5
6
7
8
9
10
11
12
13
pub trait AlignmentGeometry {
    // Returns the sum of two AlignmentGeometry objects.
    // add(AlignmentGeometry other) -> AlignmentGeometry
    
    // Convert this instance into an Alignment, which uses literal coordinates (the x coordinate being explicitly a distance from the left).//
    // resolve(TextDirection? direction) -> Alignment
}

pub struct NoneAlignmentGeometry;

impl AlignmentGeometry for NoneAlignmentGeometry {
    
}