Coder Social home page Coder Social logo

Comments (11)

tp7309 avatar tp7309 commented on August 11, 2024

You can try sticky_and_expandable_list, just use as one SliverList.
example

from flutter_sticky_headers.

emvaized avatar emvaized commented on August 11, 2024

@tp7309

It works, but for some reason sticky headers now go below statusbar in collapsed mode (code from example_sliver.dart).

ezgif com-video-to-gif

from flutter_sticky_headers.

tp7309 avatar tp7309 commented on August 11, 2024

@tp7309

It works, but for some reason sticky headers now go below statusbar in collapsed mode (code from example_sliver.dart).

The hidden height is statusbar height, I have updated the example project.
Just wrap Scaffold with SafeArea.

from flutter_sticky_headers.

emvaized avatar emvaized commented on August 11, 2024

@tp7309
Great, bug is fixed now! Thanks!

My only question remaining is -- how to make headers and content share the same index in list?
In my case of usage each section contains only one header and one child, and I want them to share the same index.

Current behavior:
Screenshot_20200315_153047

Desired:
Screenshot_20200315_153047

from flutter_sticky_headers.

tp7309 avatar tp7309 commented on August 11, 2024

@tp7309
Great, bug is fixed now! Thanks!

My only question remaining is -- how to make headers and content share the same index in list?
In my case of usage each section contains only one header and one child, and I want them to share the same index.

Echo itemBuilder return the section model and item model, you can get section/header index from section model, example:

            SliverExpandableList(
              builder: SliverExpandableChildDelegate<String, Section>(
                  sectionList: sectionList,
                  headerBuilder: _buildHeader,
                  itemBuilder: (context, section, item, index) {
                    //get sectionIndex by sectionList
                    int sectionIndex = sectionList.indexOf(section);
                    return ListTile(
                      leading: CircleAvatar(
                        child: Text("$sectionIndex"),
                      ),
                      title: Text(item),
                    );
                  }),
            )

from flutter_sticky_headers.

emvaized avatar emvaized commented on August 11, 2024

@tp7309
Works great now, thanks a lot! Thanks for your help with my issue.

Your package is a great alternative for the two existing 'sticky-headers' packages.
Some ideas for improving:

  1. Built-in collapse animation for setSectionExpanded() method;
  2. Ability to integrate with LiveSliverList from auto_animated package;
  3. Make Section() constructor not only String-oriented, but to accept widgets as well.

from flutter_sticky_headers.

tp7309 avatar tp7309 commented on August 11, 2024

@emvaized
Good idea! Animation support coming soon, you can star repo for receive lastest version update.
Some explanations about Option 3.

from flutter_sticky_headers.

emvaized avatar emvaized commented on August 11, 2024

@tp7309
Cool, thanks for your work! I'll try it.
I also created a few new issues for further improvement of your package :)

from flutter_sticky_headers.

emvaized avatar emvaized commented on August 11, 2024

However, I will leave this issue open, since the problem still exists in discussed package.

@slightfoot
Is this project abandoned?

from flutter_sticky_headers.

kanchasohail avatar kanchasohail commented on August 11, 2024

@tp7309

It works, but for some reason sticky headers now go below statusbar in collapsed mode (code from example_sliver.dart).

ezgif com-video-to-gif ezgif com-video-to-gif

How did you solve this I am facing the same problem can you share the exact solution with me

Uploading VID_20230118_200940.mp4…

from flutter_sticky_headers.

tp7309 avatar tp7309 commented on August 11, 2024

@kanchasohail

you need try or open an issue in flutter_sticky_and_expandable_list

from flutter_sticky_headers.

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.