mirror of
https://github.com/flutter/samples.git
synced 2025-11-11 23:39:14 +00:00
131 lines
3.2 KiB
Dart
131 lines
3.2 KiB
Dart
// Copyright 2020, the Flutter project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../widgets/dialogs.dart';
|
|
import '../widgets/third_party/adaptive_scaffold.dart';
|
|
import 'dashboard.dart';
|
|
import 'entries.dart';
|
|
|
|
class HomePage extends StatefulWidget {
|
|
final VoidCallback onSignOut;
|
|
|
|
const HomePage({
|
|
required this.onSignOut,
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
State<HomePage> createState() => _HomePageState();
|
|
}
|
|
|
|
class _HomePageState extends State<HomePage> {
|
|
int _pageIndex = 0;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AdaptiveScaffold(
|
|
title: const Text('Dashboard App'),
|
|
actions: [
|
|
Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: TextButton(
|
|
style: TextButton.styleFrom(primary: Colors.white),
|
|
onPressed: () => _handleSignOut(),
|
|
child: const Text('Sign Out'),
|
|
),
|
|
)
|
|
],
|
|
currentIndex: _pageIndex,
|
|
destinations: const [
|
|
AdaptiveScaffoldDestination(title: 'Home', icon: Icons.home),
|
|
AdaptiveScaffoldDestination(title: 'Entries', icon: Icons.list),
|
|
AdaptiveScaffoldDestination(title: 'Settings', icon: Icons.settings),
|
|
],
|
|
body: _pageAtIndex(_pageIndex),
|
|
onNavigationIndexChange: (newIndex) {
|
|
setState(() {
|
|
_pageIndex = newIndex;
|
|
});
|
|
},
|
|
floatingActionButton:
|
|
_hasFloatingActionButton ? _buildFab(context) : null,
|
|
);
|
|
}
|
|
|
|
bool get _hasFloatingActionButton {
|
|
if (_pageIndex == 2) return false;
|
|
return true;
|
|
}
|
|
|
|
FloatingActionButton _buildFab(BuildContext context) {
|
|
return FloatingActionButton(
|
|
child: const Icon(Icons.add),
|
|
onPressed: () => _handleFabPressed(),
|
|
);
|
|
}
|
|
|
|
void _handleFabPressed() {
|
|
if (_pageIndex == 0) {
|
|
showDialog<NewCategoryDialog>(
|
|
context: context,
|
|
builder: (context) => const NewCategoryDialog(),
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (_pageIndex == 1) {
|
|
showDialog<NewEntryDialog>(
|
|
context: context,
|
|
builder: (context) => const NewEntryDialog(),
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
|
|
Future<void> _handleSignOut() async {
|
|
var shouldSignOut = await (showDialog<bool>(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
title: const Text('Are you sure you want to sign out?'),
|
|
actions: [
|
|
TextButton(
|
|
child: const Text('No'),
|
|
onPressed: () {
|
|
Navigator.of(context).pop(false);
|
|
},
|
|
),
|
|
TextButton(
|
|
child: const Text('Yes'),
|
|
onPressed: () {
|
|
Navigator.of(context).pop(true);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
));
|
|
|
|
if (shouldSignOut == null || !shouldSignOut) {
|
|
return;
|
|
}
|
|
|
|
widget.onSignOut();
|
|
}
|
|
|
|
static Widget _pageAtIndex(int index) {
|
|
if (index == 0) {
|
|
return const DashboardPage();
|
|
}
|
|
|
|
if (index == 1) {
|
|
return const EntriesPage();
|
|
}
|
|
|
|
return const Center(child: Text('Settings page'));
|
|
}
|
|
}
|