-1

I need help on how to implement this asymmetrical grid where all the tiles are the same size

Please help

PatMS
  • 1

1 Answers1

0

This is just a very simple example of a grid of numbers

GridView(
        gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
          crossAxisCount: 2,

          childAspectRatio: 2 / 1, //ratio cells width to cells height
        ),
        padding: EdgeInsets.all(8.0),
        children: numbers
            .map(
              (number) => Text(number.toString()),
            )
            .toList(),
      ),

if you need more explanation let me know

wcyankees424
  • 2,554
  • 2
  • 12
  • 24