sliver_grouped_list 1.1.1 sliver_grouped_list: ^1.1.1 copied to clipboard
SliverGroupedList Widget. Build a beautiful Table based on Sliver Widgets with entries group by headers.
import 'package:flutter/material.dart';
import 'package:sliver_grouped_list/sliver_grouped_list.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
static const double _kHeight = 150.0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Example'),
),
body: SliverGroupedList<String, String>(
data: {
'A': ['My best friend', 'Good friend of mine', 'Guy I do not know'],
'B': ['My cat', 'My dog', 'My fish', 'My bird'],
'C': ['My mom', 'My dad', 'My sis']
},
appBar: SliverAppBar(
title: Text('SliverAppBar'),
backgroundColor: Colors.green,
expandedHeight: 200.0,
),
header: SliverGrid.count(
crossAxisCount: 3,
children: [
Container(color: Colors.white, height: _kHeight),
Container(color: Colors.black, height: _kHeight),
Container(color: Colors.grey, height: _kHeight),
Container(color: Colors.grey, height: _kHeight),
Container(color: Colors.white, height: _kHeight),
Container(color: Colors.black, height: _kHeight),
Container(color: Colors.black, height: _kHeight),
Container(color: Colors.grey, height: _kHeight),
Container(color: Colors.white, height: _kHeight),
],
),
bodyHeaderMinHeight: 60.0,
bodyHeaderMaxHeight: 100.0,
bodyHeaderPinned: true,
bodyHeaderFloating: false,
bodyHeaderBuilder: (_, header) => Container(
alignment: Alignment.center,
child: Text(
header,
style: TextStyle(color: Colors.white),
),
color: Colors.blue,
),
bodyEntryBuilder: (_, index, item) => GestureDetector(
onTap: () {
print(item);
print(index);
},
child: Card(
color: Colors.lightBlueAccent,
child: Container(
height: _kHeight,
alignment: Alignment.center,
child: Text(
item,
style: TextStyle(color: Colors.white),
))),
),
footer: SliverFixedExtentList(
itemExtent: _kHeight,
delegate: SliverChildListDelegate(
[
Container(color: Colors.black),
Container(color: Colors.white),
Container(color: Colors.grey),
Container(color: Colors.black),
Container(color: Colors.white),
Container(color: Colors.grey),
],
),
),
),
);
}
}