Untitled
unknown
dart
a year ago
556 B
10
Indexable
Never
ListView( children: [ // Ваши другие элементы ListView GridView.builder( shrinkWrap: true, physics: NeverScrollableScrollPhysics(), gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 2, // количество колонок в GridView ), itemCount: yourItemCount, itemBuilder: (context, index) { // Возвращение виджетов для элементов GridView }, ), // Ваши другие элементы ListView ], )