Files
FlutterUnit/lib/views/widgets/StatelessWidget/Spacer.dart
2020-03-20 07:42:14 +08:00

22 lines
500 B
Dart

import 'package:flutter/material.dart';
class SpacerPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
width: 200,
child: Row(
children: <Widget>[
Text('Begin'),
Spacer(flex: 3,), // Defaults to a flex of one.
Icon(Icons.ac_unit),
// Gives twice the space between Middle and End than Begin and Middle.
Spacer(flex: 2),
Text('End'),
],
),
);
}
}