-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: allow sections in the list #4
Comments
Do you want something like that? sections: <Section>[
Section(
label: Text('Static section'),
children: <Widget>[
ListTile(),
...
],
),
Section(
label: Text('Dynamic section'),
adapter: NetworkListAdapter(..),
),
...
], |
No, more like a separate |
Could you write example mockup code? |
Sure:
Does this make sense to you? |
I need to think about code design:
|
Allow the usage of sections similar to this listview: https://pub.dev/packages/flutter_section_list_view
The text was updated successfully, but these errors were encountered: