一、弹性布局

  1. class _HomeContnetState extends State {
  2. int _conuter = 1;
  3. @override
  4. Widget build(BuildContext context) {
  5. return Row(
  6. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  7. children: <Widget>[
  8. RaisedButton(child: Text("html"),),
  9. RaisedButton(child: Text("html"),),
  10. RaisedButton(child: Text("html"),),
  11. ],
  12. );
  13. }
  14. }