mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
48 lines
1.4 KiB
// 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:flutter/cupertino.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:veggieseasons/screens/favorites.dart';
|
|
import 'package:veggieseasons/screens/list.dart';
|
|
import 'package:veggieseasons/screens/search.dart';
|
|
import 'package:veggieseasons/screens/settings.dart';
|
|
|
|
class HomeScreen extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CupertinoTabScaffold(
|
|
tabBar: CupertinoTabBar(items: [
|
|
BottomNavigationBarItem(
|
|
icon: Icon(CupertinoIcons.home),
|
|
title: Text('Home'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(CupertinoIcons.book),
|
|
title: Text('My Garden'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(CupertinoIcons.search),
|
|
title: Text('Search'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(CupertinoIcons.settings),
|
|
title: Text('Settings'),
|
|
),
|
|
]),
|
|
tabBuilder: (context, index) {
|
|
if (index == 0) {
|
|
return ListScreen();
|
|
} else if (index == 1) {
|
|
return FavoritesScreen();
|
|
} else if (index == 2) {
|
|
return SearchScreen();
|
|
} else {
|
|
return SettingsScreen();
|
|
}
|
|
},
|
|
);
|
|
}
|
|
}
|