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, )) ] ); } }