flutter-listutils icon indicating copy to clipboard operation
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

Open franarolas opened this issue 4 years ago • 3 comments

Would be great to be able to set the footer on the bottom of the page always, like a normal website.

franarolas avatar Jan 19 '21 15:01 franarolas

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 avatar Feb 28 '21 12:02 WaleedAlrashed

@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.

franarolas avatar Mar 01 '21 10:03 franarolas

You can achieve the expected result using CustomScrollView and slivers, or using Column(children: [header, Spacer(), footer]).

themisir avatar Apr 09 '21 23:04 themisir