class MyStackView extends StatelessWidget {
const MyStackView({super.key});
@override
Widget build(BuildContext context) {
// TODO: implement build
return Stack(//堆叠
alignment: .bottomCenter,//对齐
children: [
Container(width: 300, height: 300, color: Colors.red),
Container(width: 200, height: 200, color: Colors.orange),
Text("data"),
],
);
}
}