I'm completely new to flutter, doing a small project to get the hang of it. I'm trying to figure out how to implement a sticky filters section for a list, hence my initial instinct was to just place it in the actual AppBar. What I am trying to do is very similar to this:
example filters
I already discovered FilterChips so I guess those will be my actual clickable filters. What I am struggling to figure out is:
a) How do I place a list of FilterChips in the AppBar? Can I even do that?
b) Say a) isn't possible, then how do I make a sticky component? I found sliver components but I'm not sure those are what I a looking for. Or is it?
c) Is the way to achieve this completely different from what I'm trying to do?
If anyone can provide any insight into even what I need to google, it would be greatly appreciated. As I said, I've only been learning flutter for 2 days so far, so.. :)
If you're trying to get a fixed top section, and then, a scrollable one, you could simply use a Column() into your Scaffold, and wrap a Container() followed by an Expanded() into it.
For example :
}