Untitled
unknown
dart
2 years ago
556 B
13
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...