mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
217 lines
6.7 KiB
Dart
217 lines
6.7 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../../gallery/demo.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.
|
|
|
|
const String _kGalleryAssetsPackage = 'flutter_gallery_assets';
|
|
|
|
class _Page {
|
|
_Page({ this.label });
|
|
final String label;
|
|
String get id => label[0];
|
|
@override
|
|
String toString() => '$runtimeType("$label")';
|
|
}
|
|
|
|
class _CardData {
|
|
const _CardData({ this.title, this.imageAsset, this.imageAssetPackage });
|
|
final String title;
|
|
final String imageAsset;
|
|
final String imageAssetPackage;
|
|
}
|
|
|
|
final Map<_Page, List<_CardData>> _allPages = <_Page, List<_CardData>>{
|
|
_Page(label: 'HOME'): <_CardData>[
|
|
const _CardData(
|
|
title: 'Flatwear',
|
|
imageAsset: 'products/flatwear.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Pine Table',
|
|
imageAsset: 'products/table.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Blue Cup',
|
|
imageAsset: 'products/cup.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Tea Set',
|
|
imageAsset: 'products/teaset.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Desk Set',
|
|
imageAsset: 'products/deskset.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Blue Linen Napkins',
|
|
imageAsset: 'products/napkins.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Planters',
|
|
imageAsset: 'products/planters.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Kitchen Quattro',
|
|
imageAsset: 'products/kitchen_quattro.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Platter',
|
|
imageAsset: 'products/platter.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
],
|
|
_Page(label: 'APPAREL'): <_CardData>[
|
|
const _CardData(
|
|
title: 'Cloud-White Dress',
|
|
imageAsset: 'products/dress.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Ginger Scarf',
|
|
imageAsset: 'products/scarf.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
const _CardData(
|
|
title: 'Blush Sweats',
|
|
imageAsset: 'products/sweats.png',
|
|
imageAssetPackage: _kGalleryAssetsPackage,
|
|
),
|
|
],
|
|
};
|
|
|
|
class _CardDataItem extends StatelessWidget {
|
|
const _CardDataItem({ this.page, this.data });
|
|
|
|
static const double height = 272.0;
|
|
final _Page page;
|
|
final _CardData data;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Card(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: <Widget>[
|
|
Align(
|
|
alignment: page.id == 'H'
|
|
? Alignment.centerLeft
|
|
: Alignment.centerRight,
|
|
child: CircleAvatar(child: Text('${page.id}')),
|
|
),
|
|
SizedBox(
|
|
width: 144.0,
|
|
height: 144.0,
|
|
child: Image.asset(
|
|
data.imageAsset,
|
|
package: data.imageAssetPackage,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
Center(
|
|
child: Text(
|
|
data.title,
|
|
style: Theme.of(context).textTheme.title,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class TabsDemo extends StatelessWidget {
|
|
static const String routeName = '/material/tabs';
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return DefaultTabController(
|
|
length: _allPages.length,
|
|
child: Scaffold(
|
|
body: NestedScrollView(
|
|
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
|
|
return <Widget>[
|
|
SliverOverlapAbsorber(
|
|
handle: NestedScrollView.sliverOverlapAbsorberHandleFor(context),
|
|
child: SliverAppBar(
|
|
title: const Text('Tabs and scrolling'),
|
|
actions: <Widget>[MaterialDemoDocumentationButton(routeName)],
|
|
pinned: true,
|
|
expandedHeight: 150.0,
|
|
forceElevated: innerBoxIsScrolled,
|
|
bottom: TabBar(
|
|
tabs: _allPages.keys.map<Widget>(
|
|
(_Page page) => Tab(text: page.label),
|
|
).toList(),
|
|
),
|
|
),
|
|
),
|
|
];
|
|
},
|
|
body: TabBarView(
|
|
children: _allPages.keys.map<Widget>((_Page page) {
|
|
return SafeArea(
|
|
top: false,
|
|
bottom: false,
|
|
child: Builder(
|
|
builder: (BuildContext context) {
|
|
return CustomScrollView(
|
|
key: PageStorageKey<_Page>(page),
|
|
slivers: <Widget>[
|
|
SliverOverlapInjector(
|
|
handle: NestedScrollView.sliverOverlapAbsorberHandleFor(context),
|
|
),
|
|
SliverPadding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 8.0,
|
|
horizontal: 16.0,
|
|
),
|
|
sliver: SliverFixedExtentList(
|
|
itemExtent: _CardDataItem.height,
|
|
delegate: SliverChildBuilderDelegate(
|
|
(BuildContext context, int index) {
|
|
final _CardData data = _allPages[page][index];
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 8.0,
|
|
),
|
|
child: _CardDataItem(
|
|
page: page,
|
|
data: data,
|
|
),
|
|
);
|
|
},
|
|
childCount: _allPages[page].length,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
},
|
|
),
|
|
);
|
|
}).toList(),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|