build method

Widget build()

直接构建Stack

Implementation

Widget build() {
  return Stack(
    alignment: alignment,
    textDirection: textDirection,
    fit: fit,
    clipBehavior: clipBehavior,
    children: children,
  );
}