Skip to content

Instantly share code, notes, and snippets.

@ananevam
Created December 15, 2019 15:43
Show Gist options
  • Save ananevam/2104bb8889b98f45c07acc714d57d417 to your computer and use it in GitHub Desktop.
Save ananevam/2104bb8889b98f45c07acc714d57d417 to your computer and use it in GitHub Desktop.
import 'package:flutter/cupertino.dart';
main() => runApp(new CupertinoApp(
home: App()
)
);
class App extends StatelessWidget {
Widget build(BuildContext context) {
return Column(children: [
Text("foo"),
GridView.count(
scrollDirection: Axis.horizontal,
physics: AlwaysScrollableScrollPhysics(),
shrinkWrap: true,
crossAxisCount: 2,
//padding: EdgeInsets.all(4.0),
childAspectRatio: 8.0 / 9.0,
children: List<String>.generate(100, (i) => "Item $i")
.map((item) => Column(children: [
Container(
width: 100,
height: 100,
color: CupertinoColors.destructiveRed),
Text(item),
]))
.toList(),
),
]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment