Commit 69aef8f2 authored by Hans Muller's avatar Hans Muller Committed by GitHub

Fast scrolling in the gallery tabs demo (#5016)

parent ae80d433
...@@ -4,19 +4,116 @@ ...@@ -4,19 +4,116 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
// Each TabBarView contains a _Page and for each _Page there is a list
// of _CardData objects. Each _CardData object is displayed by a _CardItem.
class _Page { class _Page {
_Page({ this.label }); _Page({ this.label });
final GlobalKey<ScrollableState<Scrollable>> key = new GlobalKey<ScrollableState<Scrollable>>(); final GlobalKey<ScrollableState<Scrollable>> key = new GlobalKey<ScrollableState<Scrollable>>();
final String label; final String label;
String get id => label[0];
}
class _CardData {
const _CardData({ this.title, this.imageAsset });
final String title;
final String imageAsset;
} }
final List<_Page> _pages = <_Page>[ final Map<_Page, List<_CardData>> _allPages = <_Page, List<_CardData>>{
new _Page(label: 'ONE'), new _Page(label: 'LEFT'): <_CardData>[
new _Page(label: 'TWO'), const _CardData(
new _Page(label: 'FREE'), title: 'Vintage Bluetooth Radio',
new _Page(label: 'FOUR') imageAsset: 'packages/flutter_gallery_assets/shrine/products/radio.png'
]; ),
const _CardData(
title: 'Sunglasses',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/sunnies.png'
),
const _CardData(
title: 'Clock',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/clock.png'
),
const _CardData(
title: 'Red popsicle',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/popsicle.png'
),
const _CardData(
title: 'Folding Chair',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/lawn_chair.png'
),
const _CardData(
title: 'Green comfort chair',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/chair.png'
),
],
new _Page(label: 'RIGHT'): <_CardData>[
const _CardData(
title: 'Beachball',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/beachball.png'
),
const _CardData(
title: 'Old Binoculars',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/binoculars.png'
),
const _CardData(
title: 'Teapot',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/teapot.png'
),
const _CardData(
title: 'Blue suede shoes',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/chucks.png'
),
const _CardData(
title: 'Dipped Brush',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/brush.png'
),
const _CardData(
title: 'Perfect Goldfish Bowl',
imageAsset: 'packages/flutter_gallery_assets/shrine/products/fish_bowl.png'
),
]
};
class _CardDataItem extends StatelessWidget {
_CardDataItem({ this.page, this.data });
static final double height = 272.0;
final _Page page;
final _CardData data;
@override
Widget build(BuildContext context) {
return new Card(
child: new Padding(
padding: const EdgeInsets.all(16.0),
child: new Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
new Align(
alignment: page.id == 'L'
? FractionalOffset.centerLeft
: FractionalOffset.centerRight,
child: new CircleAvatar(child: new Text('${page.id}'))
),
new SizedBox(
width: 144.0,
height: 144.0,
child: new Image(
image: new AssetImage(data.imageAsset),
fit: ImageFit.contain
)
),
new Center(
child: new Text(data.title, style: Theme.of(context).textTheme.title)
)
]
)
)
);
}
}
class TabsDemo extends StatefulWidget { class TabsDemo extends StatefulWidget {
static const String routeName = '/tabs'; static const String routeName = '/tabs';
...@@ -32,14 +129,14 @@ class TabsDemoState extends State<TabsDemo> { ...@@ -32,14 +129,14 @@ class TabsDemoState extends State<TabsDemo> {
@override @override
void initState() { void initState() {
super.initState(); super.initState();
_selectedPage = _pages[0]; _selectedPage = _allPages.keys.first;
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final double statusBarHeight = MediaQuery.of(context).padding.top; final double statusBarHeight = MediaQuery.of(context).padding.top;
return new TabBarSelection<_Page>( return new TabBarSelection<_Page>(
values: _pages, values: _allPages.keys.toList(),
onChanged: (_Page value) { onChanged: (_Page value) {
setState(() { setState(() {
_selectedPage = value; _selectedPage = value;
...@@ -51,28 +148,24 @@ class TabsDemoState extends State<TabsDemo> { ...@@ -51,28 +148,24 @@ class TabsDemoState extends State<TabsDemo> {
appBar: new AppBar( appBar: new AppBar(
title: new Text('Tabs and scrolling'), title: new Text('Tabs and scrolling'),
bottom: new TabBar<_Page>( bottom: new TabBar<_Page>(
labels: new Map<_Page, TabLabel>.fromIterable(_pages, value: (_Page page) { labels: new Map<_Page, TabLabel>.fromIterable(_allPages.keys, value: (_Page page) {
return new TabLabel(text: page.label); return new TabLabel(text: page.label);
}) })
) )
), ),
body: new TabBarView<_Page>( body: new TabBarView<_Page>(
children: _pages.map((_Page page) { children: _allPages.keys.map((_Page page) {
return new Block( return new Padding(
padding: new EdgeInsets.only(top: kTextTabBarHeight + kToolBarHeight + statusBarHeight), padding: const EdgeInsets.all(16.0),
scrollableKey: page.key, child: new ScrollableList(
onScroll: (double value) { _scrollOffset = value; }, padding: new EdgeInsets.only(top: kTextTabBarHeight + kToolBarHeight + statusBarHeight),
children: new List<Widget>.generate(6, (int i) { itemExtent: _CardDataItem.height,
return new Container( scrollableKey: page.key,
padding: const EdgeInsets.all(8.0), onScroll: (double value) { _scrollOffset = value; },
height: 192.0, children: _allPages[page].map((_CardData data) {
child: new Card( return new _CardDataItem(page: page, data: data);
child: new Center( }).toList()
child: new Text('Tab ${page.label}, item $i') )
)
)
);
})
); );
}).toList() }).toList()
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment