Alignment<String> class
Used to specify the alignment of child elements within a layer.
class Alignment<String> extends Enum<String> {
const Alignment(String type) : super (type);
/**
* Positions an element at the beginning of a given axis.
*/
static const Alignment BEGIN = const Alignment("BEGIN");
/**
* Positions an element at the beginning of a given axis.
*/
static const Alignment END = const Alignment("END");
/**
* Stretches an element to fill the layer on a given axis.
*/
static const Alignment STRETCH = const Alignment("STRETCH");
}
Extends
Enum<String> > Alignment<String>
Static Properties
const Alignment BEGIN #
Positions an element at the beginning of a given axis.
static const Alignment BEGIN = const Alignment("BEGIN")