-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathcards_demo.dart
420 lines (389 loc) · 12.4 KB
/
cards_demo.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
// Copyright 2020 The Flutter team. 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';
enum CardType { standard, tappable, selectable }
class TravelDestination {
const TravelDestination({
required this.assetName,
required this.title,
required this.description,
required this.city,
required this.location,
this.cardType = CardType.standard,
});
final String assetName;
final String title;
final String description;
final String city;
final String location;
final CardType cardType;
}
const List<TravelDestination> _destinations = [
TravelDestination(
assetName: 'places/india_thanjavur_market.png',
title: 'Top 10 Cities to Visit in Tamil Nadu',
description: 'Number 10',
city: 'Thanjavur',
location: 'Thanjavur, Tamil Nadu',
),
TravelDestination(
assetName: 'places/india_chettinad_silk_maker.png',
title: 'Artisans of Southern India',
description: 'Silk Spinners',
city: 'Chettinad',
location: 'Sivaganga, Tamil Nadu',
cardType: CardType.tappable,
),
TravelDestination(
assetName: 'places/india_tanjore_thanjavur_temple.png',
title: 'Brihadisvara Temple',
description: 'Temples',
city: 'Thanjavur',
location: 'Thanjavur, Tamil Nadu',
cardType: CardType.selectable,
),
];
class TravelDestinationItem extends StatelessWidget {
const TravelDestinationItem({
super.key,
required this.destination,
this.shape,
});
// Height that allows for all the Card's contents
// to fit comfortably within the card.
static const double height = 360;
final TravelDestination destination;
final ShapeBorder? shape;
@override
Widget build(BuildContext context) {
return SafeArea(
top: false,
bottom: false,
child: Padding(
padding: const EdgeInsets.all(8),
child: Column(
children: [
const SectionTitle(title: 'Normal'),
SizedBox(
height: height,
child: Card(
// Ensures that the Card's children are clipped correctly.
clipBehavior: Clip.antiAlias,
shape: shape,
child: Semantics(
label: destination.title,
child: TravelDestinationContent(destination: destination),
),
),
),
],
),
),
);
}
}
class TappableTravelDestinationItem extends StatelessWidget {
const TappableTravelDestinationItem({
super.key,
required this.destination,
this.shape,
});
// Height that allows for all the Card's contents
// to fit comfortably within the card.
static const double height = 298;
final TravelDestination destination;
final ShapeBorder? shape;
@override
Widget build(BuildContext context) {
return SafeArea(
top: false,
bottom: false,
child: Padding(
padding: const EdgeInsets.all(8),
child: Column(
children: [
const SectionTitle(title: 'Tappable'),
SizedBox(
height: height,
child: Card(
// Ensures that the Card's children (including the ink splash)
// are clipped correctly.
clipBehavior: Clip.antiAlias,
shape: shape,
child: InkWell(
onTap: () {},
splashColor: Theme.of(
context,
).colorScheme.onSurface.withValues(alpha: 0.12),
highlightColor: Colors.transparent,
child: Semantics(
label: destination.title,
child: TravelDestinationContent(destination: destination),
),
),
),
),
],
),
),
);
}
}
class SelectableTravelDestinationItem extends StatelessWidget {
const SelectableTravelDestinationItem({
super.key,
required this.destination,
required this.isSelected,
required this.onSelected,
this.shape,
});
final TravelDestination destination;
final ShapeBorder? shape;
final bool isSelected;
final VoidCallback onSelected;
// Height that allows for all the Card's contents
// to fit comfortably within the card.
static const double height = 298;
@override
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;
final String selectedStatus = isSelected ? 'Selected' : 'Not selected';
return SafeArea(
top: false,
bottom: false,
child: Padding(
padding: const EdgeInsets.all(8),
child: Column(
children: [
const SectionTitle(title: 'Selectable (long press)'),
SizedBox(
height: height,
child: Card(
// Ensures that the Card's children (including the ink splash)
// are clipped correctly.
clipBehavior: Clip.antiAlias,
shape: shape,
child: InkWell(
onLongPress: () {
onSelected();
},
splashColor: colorScheme.onSurface.withValues(alpha: 0.12),
highlightColor: Colors.transparent,
child: Stack(
children: [
Container(
color:
isSelected
? colorScheme.primary.withValues(alpha: 0.08)
: Colors.transparent,
),
Semantics(
label: '${destination.title}, $selectedStatus',
onLongPressHint: isSelected ? 'Deselect' : 'Select',
child: TravelDestinationContent(
destination: destination,
),
),
Align(
alignment: Alignment.topRight,
child: Padding(
padding: const EdgeInsets.all(8),
child: Icon(
Icons.check_circle,
color:
isSelected
? colorScheme.primary
: Colors.transparent,
),
),
),
],
),
),
),
),
],
),
),
);
}
}
class SectionTitle extends StatelessWidget {
const SectionTitle({super.key, required this.title});
final String title;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.fromLTRB(4, 4, 4, 12),
child: Align(
alignment: Alignment.centerLeft,
child: Text(title, style: Theme.of(context).textTheme.titleMedium),
),
);
}
}
class TravelDestinationContent extends StatelessWidget {
const TravelDestinationContent({super.key, required this.destination});
final TravelDestination destination;
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final titleStyle = theme.textTheme.headlineSmall!.copyWith(
color: Colors.white,
);
final descriptionStyle = theme.textTheme.titleMedium!;
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
height: 184,
child: Stack(
children: [
Positioned.fill(
// In order to have the ink splash appear above the image, you
// must use Ink.image. This allows the image to be painted as
// part of the Material and display ink effects above it.
// Using a standard Image will obscure the ink splash.
child: Ink.image(
image: AssetImage(destination.assetName),
fit: BoxFit.cover,
child: Container(),
),
),
Positioned(
bottom: 16,
left: 16,
right: 16,
child: FittedBox(
fit: BoxFit.scaleDown,
alignment: Alignment.centerLeft,
child: Semantics(
container: true,
header: true,
child: Text(destination.title, style: titleStyle),
),
),
),
],
),
),
// Description and share/explore buttons.
Semantics(
container: true,
child: Padding(
padding: const EdgeInsets.fromLTRB(16, 16, 16, 0),
child: DefaultTextStyle(
softWrap: false,
overflow: TextOverflow.ellipsis,
style: descriptionStyle,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// The three line description on each card demo.
Padding(
padding: const EdgeInsets.only(bottom: 8),
child: Text(
destination.description,
style: descriptionStyle.copyWith(color: Colors.black54),
),
),
Text(destination.city),
Text(destination.location),
],
),
),
),
),
if (destination.cardType == CardType.standard)
// share, explore buttons
Padding(
padding: const EdgeInsets.all(8),
child: OverflowBar(
alignment: MainAxisAlignment.start,
spacing: 8,
children: [
TextButton(
onPressed: () {},
child: Text(
'Share',
semanticsLabel: 'Share ${destination.title}',
),
),
TextButton(
onPressed: () {},
child: Text(
'Explore',
semanticsLabel: 'Explore ${destination.title}',
),
),
],
),
),
],
);
}
}
class CardsDemo extends StatefulWidget {
const CardsDemo({super.key});
@override
State<CardsDemo> createState() => _CardsDemoState();
}
class _CardsDemoState extends State<CardsDemo> with RestorationMixin {
final RestorableBool _isSelected = RestorableBool(false);
@override
String get restorationId => 'cards_demo';
@override
void restoreState(RestorationBucket? oldBucket, bool initialRestore) {
registerForRestoration(_isSelected, 'is_selected');
}
@override
void dispose() {
_isSelected.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.green,
appBar: AppBar(
automaticallyImplyLeading: false,
title: const Text('Cards'),
),
body: Scrollbar(
child: ListView(
restorationId: 'cards_demo_list_view',
padding: const EdgeInsets.only(top: 8, left: 8, right: 8),
children: [
for (final destination in _destinations)
Container(
margin: const EdgeInsets.only(bottom: 8),
child: switch (destination.cardType) {
CardType.standard => TravelDestinationItem(
destination: destination,
),
CardType.tappable => TappableTravelDestinationItem(
destination: destination,
),
CardType.selectable => SelectableTravelDestinationItem(
destination: destination,
isSelected: _isSelected.value,
onSelected: () {
setState(() {
_isSelected.value = !_isSelected.value;
});
},
),
},
),
],
),
),
),
);
}
}
void main() {
runApp(const CardsDemo());
}