Giter Club home page Giter Club logo

Comments (6)

letsar avatar letsar commented on July 16, 2024 1

Hi @gastonche, I think you should use a CustomScrollView with two slivers here:
A SliverPadding (to replace the Padding widget)
A SliverStaggeredGrid(to replace the StaggeredGridView).
The issue here is because the Columndoes not let you to scroll.

from flutter_staggered_grid_view.

aydinfatih avatar aydinfatih commented on July 16, 2024 1

i have same issue.


StaggeredGridView.countBuilder(
      crossAxisCount: 2,
      staggeredTileBuilder: (index) => new StaggeredTile.fit(2),
      itemCount: data.results.length,
      itemBuilder: (context, index) {
        return Card(
          color: Colors.transparent,
          clipBehavior: Clip.antiAlias,
          elevation: 0,
          child: ClipRRect(
            borderRadius: BorderRadius.all(Radius.circular(10)),
            child: Column(
              children: <Widget>[
                CachedNetworkImage(
                  imageUrl: data.results[index].image,
                ),
                Container(
                  color: Colors.white,
                  padding: EdgeInsets.all(10),
                  child: Column(
                    children: <Widget>[
                      Row(
                        mainAxisAlignment: MainAxisAlignment.spaceBetween,
                        children: <Widget>[
                          Text(
                            data.results[index].channel.name,
                            style: TextStyle(
                              fontSize: 14,
                              color: Colors.black54,
                            ),
                          ),
                          Text(
                            data.results[index].publishDate.toIso8601String(),
                            style: TextStyle(
                              fontSize: 14,
                              color: Colors.black54,
                            ),
                          )
                        ],
                      ),
                      Padding(
                        padding: EdgeInsets.symmetric(vertical: 10),
                        child: Text(
                          data.results[index].title,
                          style: TextStyle(
                              fontWeight: FontWeight.bold,
                              fontSize: 18,
                              color: Colors.black87),
                        ),
                      ),
                      Text(
                        data.results[index].description,
                        style: TextStyle(
                          color: Colors.black54,
                          fontSize: 14,
                        ),
                      )
                    ],
                  ),
                )
              ],
            ),
          ),
        );
      },
    );

from flutter_staggered_grid_view.

khalidsaleh avatar khalidsaleh commented on July 16, 2024 1

StaggeredGridView and SliverStaggeredGrid not scrolling !!!!!!!!

from flutter_staggered_grid_view.

arutkayb avatar arutkayb commented on July 16, 2024

I'm having the same problem but SliverStaggeredGrid.count inside CustomScrollView is not solving my problem. Can you have a look? Reproduce: https://github.com/arutkayb/FlutterMovies/blob/f17c2fb3c85275ccf87f25d89b834dedc5ce13fe/flutter_movies/lib/module/list_movies.dart

from flutter_staggered_grid_view.

letsar avatar letsar commented on July 16, 2024

Closing as it resolved or will not be fixed in the current version (a new version, completely refactored is on its way).
Let me know If you can test under the feature/renaissance branch, and it's not resolved.

from flutter_staggered_grid_view.

lucasjinreal avatar lucasjinreal commented on July 16, 2024

Still can not scrolling....

I am not sure why a popular gridView can not be scrolled default....

from flutter_staggered_grid_view.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.