部分修改

This commit is contained in:
2026-05-26 11:31:38 +08:00
parent 97c88862ec
commit 7aed08fcc8
5 changed files with 42 additions and 46 deletions

View File

@@ -4,7 +4,7 @@ class ZContainer extends StatelessWidget {
const ZContainer({super.key});
@override
Widget build(BuildContext context){
Widget build(BuildContext context) {
return Row(
mainAxisAlignment: .spaceBetween,
children: [
@@ -12,21 +12,12 @@ class ZContainer extends StatelessWidget {
width: 200,
height: .infinity,
child: DefaultTextStyle(
style: TextStyle(
color: Colors.white
),
child: Column(
children: [
Text("导入数据"),
Text("查询数据")
],
)
style: TextStyle(color: Colors.white),
child: Column(children: [Text("导入数据"), Text("查询数据")]),
),
),
Expanded(child: Container(
color: Colors.blue,
))
]
Expanded(child: Container(color: Colors.blue)),
],
);
}
}
}