1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Adds the start of a new sample showcasing Cupertino widgets. (#12)

This commit is contained in:
Andrew Brogdon
2018-08-31 15:08:33 -07:00
committed by GitHub
parent 9d5686ae13
commit 928c40c097
68 changed files with 1822 additions and 0 deletions

View File

@@ -0,0 +1,88 @@
// Copyright 2018 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:meta/meta.dart';
enum VeggieCategory {
legume,
tuber,
cruciferous,
gourd,
leafy,
berry,
stealthFruit,
tropical,
fruit,
melon,
stoneFruit,
fern,
citrus,
root,
allium,
fungus,
vegetable,
}
enum Season {
winter,
spring,
summer,
autumn,
}
final Map<VeggieCategory, String> veggieCategoryNames = {
VeggieCategory.legume: 'Legume',
VeggieCategory.tuber: 'Tuber',
VeggieCategory.cruciferous: 'Cruciferous',
VeggieCategory.gourd: 'Gourd',
VeggieCategory.leafy: 'Leafy',
VeggieCategory.berry: 'Berry',
VeggieCategory.stealthFruit: 'Stealth fruit',
VeggieCategory.tropical: 'Tropical',
VeggieCategory.fruit: 'Fruit',
VeggieCategory.melon: 'Melon',
VeggieCategory.stoneFruit: 'Stone fruit',
VeggieCategory.fern: 'Technically fern',
VeggieCategory.citrus: 'Citrus',
VeggieCategory.root: 'Root vegetable',
VeggieCategory.allium: 'Allium',
VeggieCategory.fungus: 'Fungus',
VeggieCategory.vegetable: 'Vegetable',
};
class Veggie {
Veggie({
@required this.id,
@required this.name,
@required this.imageAssetPath,
@required this.category,
@required this.shortDescription,
@required this.accentColor,
@required this.seasons,
this.isFavorite = false,
});
final int id;
final String name;
/// Each veggie has an associated image asset that's used as a background
/// image and icon.
final String imageAssetPath;
final VeggieCategory category;
final String shortDescription;
/// A color value to use when constructing UI elements to match the image
/// found at [imageAssetPath].
final int accentColor;
/// Seasons during which a veggie is harvested.
final List<Season> seasons;
/// Whether or not the veggie has been saved to the user's garden (i.e. marked
/// as a favorite).
bool isFavorite;
}