Files
report-manage/lib/container.dart
2026-05-26 00:01:15 +08:00

32 lines
704 B
Dart

import 'package:flutter/material.dart';
class ZContainer extends StatelessWidget {
const ZContainer({super.key});
@override
Widget build(BuildContext context){
return Row(
mainAxisAlignment: .spaceBetween,
children: [
SizedBox(
width: 200,
height: .infinity,
child: DefaultTextStyle(
style: TextStyle(
color: Colors.white
),
child: Column(
children: [
Text("导入数据"),
Text("查询数据")
],
)
),
),
Expanded(child: Container(
color: Colors.blue,
))
]
);
}
}