flutter_staggered_grid 0.1.1
flutter_staggered_grid: ^0.1.1 copied to clipboard
Provides staggered, masonry, quilted, woven, and staired grid layouts for Flutter.
import 'common.dart';
import 'pages/aligned.dart';
import 'pages/masonry.dart';
import 'pages/quilted.dart';
import 'pages/staggered.dart';
import 'pages/staired.dart';
import 'pages/woven.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Staggered Grid View Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const HomePage(),
);
}
}
class HomePage extends StatelessWidget {
const HomePage({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return AppScaffold(
title: 'Staggered Grid View Demo',
child: GridView(
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2,
mainAxisSpacing: 16,
crossAxisSpacing: 16,
),
children: const [
MenuEntry(
title: 'Staggered',
imageName: 'staggered',
destination: StaggeredPage(),
),
MenuEntry(
title: 'Masonry',
imageName: 'masonry',
destination: MasonryPage(),
),
MenuEntry(
title: 'Quilted',
imageName: 'quilted',
destination: QuiltedPage(),
),
MenuEntry(
title: 'Woven',
imageName: 'woven',
destination: WovenPage(),
),
MenuEntry(
title: 'Staired',
imageName: 'staired',
destination: StairedPage(),
),
MenuEntry(
title: 'Aligned',
imageName: 'aligned',
destination: AlignedPage(),
),
],
),
);
}
}
class MenuEntry extends StatelessWidget {
const MenuEntry({
Key? key,
required this.title,
required this.imageName,
required this.destination,
}) : super(key: key);
final String title;
final Widget destination;
final String imageName;
@override
Widget build(BuildContext context) {
return Card(
elevation: 4,
child: InkWell(
onTap: () {
Navigator.push(
context,
MaterialPageRoute<void>(
builder: (context) => destination,
),
);
},
child: Stack(
children: [
Image.asset(
'assets/$imageName.png',
fit: BoxFit.fill,
),
Positioned.fill(
child: FractionallySizedBox(
heightFactor: 0.25,
alignment: Alignment.bottomCenter,
child: ColoredBox(
color: Colors.black.withValues(alpha: 0.75),
child: Center(
child: Text(
title,
overflow: TextOverflow.ellipsis,
textAlign: TextAlign.center,
style: Theme.of(context)
.textTheme
.titleLarge!
.copyWith(color: Colors.white),
),
),
),
),
),
],
),
),
);
}
}