Pawan Bhayde
Pawan Bhayde

Reputation: 19

How to make this grid content section in flutter

enter image description here

I am developing an eLearning platform and I want to make this type of videos recommendation section that shows videos in two rows grid format that is horizontally scrollable

Upvotes: 0

Views: 28

Answers (1)

Md. Yeasin Sheikh
Md. Yeasin Sheikh

Reputation: 63604

You can use crossAxisCount: 2,

GridView.builder(
  scrollDirection: Axis.horizontal,
  gridDelegate:
      SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2),
  itemBuilder: (context, index) => Container(
    child: Text("$index"),
  ),
),

Upvotes: 1

Related Questions