flutter_staggered_grid_view
flutter_staggered_grid_view copied to clipboard
Aligning items right to left
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)?
can you provide you sample code?
Sure!
MasonryGridView.count( crossAxisCount: 3, mainAxisSpacing: 5, crossAxisSpacing: 45, itemCount: choices.length, itemBuilder: (context, index) { return ChoiceCard(choice: choices[index], index: index); }, )