mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
* add go_router * wip migration to go_router * small fixes * home screen cleanup * remove unused * small fixes * details should be fullscreen dialog * remove comment * fix navigation outside the shell by using the correct navigation keys * add restoration id to all pages * test passing, but parts are commented out, wip * uncommented more test code * Add TODOs * fix lint issues * fix tests * use FadeTransitionPage * remove unnecessary builders * FadeTransitionPage same as CustomTransitionPage * add comments regarding relative routes * add missing pageKey * add missing const --------- Co-authored-by: Brett Morgan <brettmorgan@google.com>
65 lines
1.8 KiB
Dart
65 lines
1.8 KiB
Dart
// 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:go_router/go_router.dart';
|
|
|
|
class HomeScreen extends StatelessWidget {
|
|
const HomeScreen({
|
|
super.key,
|
|
this.restorationId,
|
|
required this.child,
|
|
required this.onTap,
|
|
});
|
|
|
|
final String? restorationId;
|
|
final Widget child;
|
|
final void Function(int) onTap;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final index = _getSelectedIndex(GoRouter.of(context).location);
|
|
return RestorationScope(
|
|
restorationId: restorationId,
|
|
child: CupertinoPageScaffold(
|
|
child: Column(
|
|
children: [
|
|
Expanded(child: child),
|
|
CupertinoTabBar(
|
|
currentIndex: index,
|
|
items: const [
|
|
BottomNavigationBarItem(
|
|
icon: Icon(CupertinoIcons.home),
|
|
label: 'Home',
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(CupertinoIcons.book),
|
|
label: 'My Garden',
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(CupertinoIcons.search),
|
|
label: 'Search',
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(CupertinoIcons.settings),
|
|
label: 'Settings',
|
|
),
|
|
],
|
|
onTap: onTap,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
int _getSelectedIndex(String location) {
|
|
if (location.startsWith('/list')) return 0;
|
|
if (location.startsWith('/favorites')) return 1;
|
|
if (location.startsWith('/search')) return 2;
|
|
if (location.startsWith('/settings')) return 3;
|
|
return 0;
|
|
}
|
|
}
|