Flutter 撑满剩余宽度
import 'package:flutter/material.dart';
class TestPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Material(
child: Container(
height: 100.0,
child: Row(
children: <Widget>[
Container(
height: 100.0,
width: 50.0,
color: Colors.red,
child: Text('我占用 50 的宽度'),
),
Expanded(
child: Container(
height: 100.0,
width: MediaQuery.of(context).size.width,
color: Colors.blue,
child: Text('我将撑满剩余宽度'),
),
)
],
),
));
}
}