颤动在列表视图中显示gridview

我正在尝试在gridview上方显示一个搜索栏(来自流构建器).我想像搜索栏一样向上滚动gridview.我已经尝试了很多方法将它们包装在扩展/灵活的小部件中,但我总是遇到错误.有人管理过吗?

这就是我现在所拥有的,它将滚动但搜索栏保持在顶部.

new Column(
    children: <Widget>[
      new Flexible(
        child: new Column(
          children: <Widget>[
            new Container(
              margin: new EdgeInsets.only(left: 4.0,right: 4.0),color: Colors.white,child: new Row(
                children: <Widget>[
                  new Container(
                    margin: new EdgeInsets.only(left: 8.0,right: 8.0,top: 8.0,bottom: 8.0),child: Icon(Icons.search),),new Container(
                      child: Flexible(
                        child: new TextField(
                          onChanged: (String text) {
                            setState(() {
                              _searchController.text = text;
                            });
                          },decoration: new Inputdecoration.collapsed(hintText: 'Search...'),controller: _searchController,)
                  ),],new Flexible(
                child: new StreamBuilder(
                    stream: stgDocument.collection('people').orderBy('scroll').snapshots(),builder: (context,snapshot) {
                      if (!snapshot.hasData) return const Text('Loading...');
                      _getMembers(snapshot);
                      return new GridView.builder(
                        //itemCount: snapshot.data.documents.length,itemCount: _searchedMemberList.length,gridDelegate: new SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2),itemBuilder: (context,index) =>
                            _buildPeopleCards(context,_searchedMemberList[index]),//_buildPeopleCards(context,snapshot.data.documents[index])
                      );
                    }
                )
            ),)

解决方法

您可以使用下面的结构创建一个包含多个子项的可滚动 ListView,其中一个GridView.要为ListView中的所有元素启用滚动,需要将其参数物理设置为 NeverScrollablePhysics.

- ListView
   - Container // your searchbar would go here
   - GridView  // physics: NeverScrollablePhysics
     - Children

这是一个完整的代码示例:

import 'package:Flutter/material.dart';
import 'package:cached_network_image/cached_network_image.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(),home: Scaffold(
        body: ListView(
          children: <Widget>[
            Container(
              color: Colors.red,height: 50.0,GridView.count(
              physics: NeverScrollableScrollPhysics(),crossAxisCount: 3,shrinkWrap: true,children: generateNumbers().map((int i) {
                return Text(i.toString());
              }).toList(),)
          ],);
  }

  List<int> generateNumbers() => List<int>.generate(30,(i) => i + 1);
}

结果如下:

Animated Example

相关文章

这篇文章主要讲解了“FlutterComponent动画的显和隐怎么实现...
这篇文章主要讲解了“flutter微信聊天输入框功能如何实现”,...
本篇内容介绍了“Flutter之Navigator的高级用法有哪些”的有...
这篇文章主要介绍“Flutter怎么使用Android原生播放器”,在...
Flutter开发的android端如何修改APP名称,logo,版本号,具体...
Flutter路由管理初识路由概念一.路由管理1.1.Route1.2.Mater...