
import 'package:flutter/material.dart';void main() => runApp(MyApp());class MyApp extends StatelessWidget {  @override  Widget build(BuildContext context) {    Color color = Theme.of(context).primaryColor; //定义颜色    // 创建一组 button    Widget buttonSection = Container(        child: Row(      mainAxisAlignment: MainAxisAlignment.spaceEvenly,      children: [        _buildButtonColumn(color, Icons.call, 'CALL'),        _buildButtonColumn(color, Icons.near_me, 'ROUTE'),        _buildButtonColumn(color, Icons.share, 'SHARE')      ],    ));    Widget textSection = Container(        padding: const EdgeInsets.all(32),        child: Text(          'Lake Oeschinen lies at the foot of the Blüemlisalp in the Bernese '          'Alps. Situated 1,578 meters above sea level, it is one of the '          'larger Alpine Lakes. A gondola ride from Kandersteg, followed by a '          'half-hour walk through pastures and pine forest, leads you to the '          'lake, which warms to 20 degrees Celsius in the summer. Activities '          'enjoyed here include rowing, and riding the summer toboggan run.',          softWrap: true,        ));    return MaterialApp(      title: 'Flutter layout demo',      home: Scaffold(        appBar: AppBar(          title: Text('Flutter layout demo'),        ),        body: ListView(          children: [            Image.asset(              'images/lake.jpg',              width: 600,              height: 240,              fit: BoxFit.cover,            ),            titleSection,            buttonSection,            textSection          ],        ),      ),    );  }  // 快速创建 button 的方法  Column _buildButtonColumn(Color color, IconData icon, String label) {    return Column(      mainAxisSize: MainAxisSize.min,      mainAxisAlignment: MainAxisAlignment.center,      children: [        Icon(icon, color: color),        Container(            margin: const EdgeInsets.only(top: 8),            child: Text(label,                style: TextStyle(                  fontSize: 12,                  fontWeight: FontWeight.w400,                  color: color,                ))),      ],    );  }}// 顶部 title WidgetWidget titleSection = Container(  padding: const EdgeInsets.all(32), // 容器 padding 32  child: Row(    // 定义一行 Row    children: [      Expanded(        /*1 定义一列*/        child: Column(          crossAxisAlignment: CrossAxisAlignment.start,          children: [            /*2*/            Container(              padding: const EdgeInsets.only(bottom: 8),              child: Text(                'Oeschinen Lake Campground',                style: TextStyle(                  fontWeight: FontWeight.bold,                ),              ),            ),            Text(              'Kandersteg, Switzerland',              style: TextStyle(                color: Colors.grey[500],              ),            ),          ],        ),      ),      /*3*/      Icon(        Icons.star,        color: Colors.red[500],      ),      Text('41'),    ],  ),);