Skip to content

Instantly share code, notes, and snippets.

@mmanflori
Created February 10, 2019 13:37
Show Gist options
  • Save mmanflori/a9ea32312d9a9259ebae99994f7b94e3 to your computer and use it in GitHub Desktop.
Save mmanflori/a9ea32312d9a9259ebae99994f7b94e3 to your computer and use it in GitHub Desktop.
GridView Exampel
import 'package:flutter/material.dart';
void main()=> runApp(tut_002());
class tut_002 extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
primaryColor: Colors.blue,
),
home: Scaffold(
appBar: AppBar(
title: Text(
"tut_002",
style:TextStyle(
color:Colors.white,
)
),
),
body: OrientationBuilder(
builder: (context,orientation){
return GridView.count(
crossAxisCount: orientation==Orientation.portrait?2:3,
crossAxisSpacing: 2,
children: List.generate(6, (index){
return Image.asset(
"images/Beispiel$index.PNG",
width: 105.0,
height: 72.0,
);
}),
);
}),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment