flutter_staggered_grid_view icon indicating copy to clipboard operation
flutter_staggered_grid_view copied to clipboard

Aligning items right to left

Open khalid-alsaleh-dev opened this issue 3 years ago • 2 comments

I'm trying to create an Arabic application which required aligning items from right to left, how to do that (what changes should I make)?

khalid-alsaleh-dev avatar Aug 10 '22 19:08 khalid-alsaleh-dev

can you provide you sample code?

cmedamine avatar Aug 11 '22 12:08 cmedamine

Sure!

MasonryGridView.count( crossAxisCount: 3, mainAxisSpacing: 5, crossAxisSpacing: 45, itemCount: choices.length, itemBuilder: (context, index) { return ChoiceCard(choice: choices[index], index: index); }, )

khalid-alsaleh-dev avatar Aug 11 '22 18:08 khalid-alsaleh-dev