Flutter Grid with resizable & draggable items - flutter

How can I make Flutter widget that has different size items that each item can be resizable and draggable?
Image Example

There's a StaggeredGridView package that does this on pub.dev

you can use flutter_staggered_grid_view package hope this will be work for you. Thanks
https://pub.dev/packages/flutter_staggered_grid_view

Related

How to make a stepper like in image in flutter

How can I achieve this kind of stepper as shown in the image? I have tried the stepper widget and some packages but was unable to achieve that
You can use package status_change 2.0.0 to achive this view
Here is the example for horizontal view

Resize a Widget Vertically with gestures Flutter

I need to resize a widget from top and bottom on drag in Flutter. Does someone know how can I do it?
You can check Resize Widget package for your requirements

Flutter Dropdown slider from Appbar

I want to archive some kind of dropdown look like the image. I tried to find but I don't get any.
Please help.
Thank you!
You can use the Visibility Widget . You put it on top and hide it until you need it
https://api.flutter.dev/flutter/widgets/Visibility-class.html

How to return a combination of SliverAppBar and SliverList in flutter

I have an app that has a cart screen, in this screen I want to divide the ordered products according to their respective factories, so I want to use SliverAppBars and SliverLists.
Now what I really need is to make a custom widget that can returns a SliverAppBar and a SliverList together so that I build this widget and get multiple SliverAppBars and SliverLists.
Anyone knows how to do that?
I found a package on pub.dev that can do that, it's called sliver_tools and here's the link to it here

how to set custom height of item for flutter gridview.count

I am new in Flutter and i want to make a GridView in flutter where Gridview items height can be customized by me and one more thing can someone please explain me how childAspectRatio works in GridView.count .