Skip to content

Instantly share code, notes, and snippets.

@PlugFox
Forked from ananevam/main.dart
Created December 15, 2019 16:23
Show Gist options
  • Save PlugFox/e1607c0429b967929675bb4a3740db79 to your computer and use it in GitHub Desktop.
Save PlugFox/e1607c0429b967929675bb4a3740db79 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: [
SizedBox(
child: Text("foo"),
height: 100,
width: 100,
),
Expanded(
child: 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