flutter-listutils
flutter-listutils copied to clipboard
Add an option to set the footer always on the bottom of the page if the listview is not big enough
Would be great to be able to set the footer on the bottom of the page always, like a normal website.
Are you thinking of making the footer persistent? like a normal website footer? That would be a great extension actually, that is if you are planning on using the body of the custom list view as the entire body of your webpage. if there was more than one widget inside the body, maybe we can toggle this feature by using a boolean (persist footer for ex.)
@WaleedAlrashed I detailed this in this issue: Flutter repo issue I really don't know why no one else is asking for something like this, this should be marked as a "must have" requirement for Flutter WEB.
You can achieve the expected result using CustomScrollView and slivers, or using Column(children: [header, Spacer(), footer]).