Untitled

Anonymous
dart
08/23/2023 9:18 AM
744 B
27
Indexable
ListView(
  children: [
    // Ваши другие элементы ListView
    GridView.builder(
      shrinkWrap: true,
      physics: NeverScrollableScrollPhysics(),
      gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
        crossAxisCount: 2, // количество колонок в GridView
      ),
      itemCount: yourItemCount,
      itemBuilder: (context, index) {
        // Возвращение виджетов для элементов GridView
      },
    ),
    // Ваши другие элементы ListView
  ],
)
Editor is loading...