Posts

Showing posts with the label SliverGrid. count constructor.

SliverGrid. count constructor.

Search Results Featured snippet from the web SliverGrid .  count  constructor. Creates a sliver that places multiple box children in a two dimensional arrangement with a fixed number of tiles in the cross axis. Uses a SliverGridDelegateWithFixedCrossAxisCount as the gridDelegate, and a SliverChildListDelegate as the delegate import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { final appTitle = 'Drawer Demo'; @override Widget build(BuildContext context) { return MaterialApp( title: appTitle, home: MyHomePage(title: appTitle), ); } } class MyHomePage extends StatelessWidget { final String title; MyHomePage({Key key, this.title}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text(title)), body: Center( child:CustomScrollView( primary: false,