Khaled Eltrabily
Khaled Eltrabily

Reputation: 23

flutter UI grid

I want to build a grid likes the picture below, I tried using gridView.count but the photos was square, and I tried to use column and wrap inside it with the picture having AspectRatio class but it didn't also look like it, so any ideas?

enter image description here

Upvotes: 0

Views: 106

Answers (2)

mohammad mobasher
mohammad mobasher

Reputation: 777

there is bunch of lib that you can use for this :

  1. waterfall_flow
  2. reorderableitemsview
  3. flutter_staggered_grid_view

I hope I hope I was able to help.

Upvotes: 0

timilehinjegede
timilehinjegede

Reputation: 14043

You can achieve the layout using a Staggered Grid View.

Check the package below:

Flutter Staggered Grid View

Upvotes: 1

Related Questions