Flutter 在同一页面显示List和Grid

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: HomePage(),
    );
  }
}

class HomePage extends StatefulWidget {
  @override
  _HomePageState createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Home Page'),
      ),
      body: ListView(
        children: <Widget>[
          ListTile(
            title: Text('data'),
          ),
          ListTile(
            title: Text('data'),
          ),
          GridView.count(
            primary:
                false, // https://api.flutter.dev/flutter/widgets/ScrollView/primary.html
            shrinkWrap: true, // 限制约束 https://api.flutter.dev/flutter/widgets/ScrollView/shrinkWrap.html
            crossAxisCount: 3,
            children: List<Widget>.generate(
                7,
                (_) => Container(
                      color: Colors.red,
                      margin: const EdgeInsets.all(8),
                    )),
          ),
          ListTile(
            title: Text('data'),
          ),
          ListTile(
            title: Text('data'),
          ),
        ],
      ),
    );
  }
}

猜你喜欢

转载自www.cnblogs.com/ajanuw/p/11804214.html