2024-05-21 23:20:34 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
2024-05-23 17:41:51 +02:00
|
|
|
import 'package:simplecloudnotifier/pages/debug/debug_main.dart';
|
2024-05-21 23:20:34 +02:00
|
|
|
import 'package:simplecloudnotifier/state/app_theme.dart';
|
|
|
|
|
|
|
|
class SCNAppBar extends StatelessWidget implements PreferredSizeWidget {
|
2024-05-23 17:41:51 +02:00
|
|
|
const SCNAppBar({
|
|
|
|
Key? key,
|
|
|
|
required this.title,
|
|
|
|
required this.showThemeSwitch,
|
|
|
|
required this.showDebug,
|
|
|
|
required this.showSearch,
|
|
|
|
}) : super(key: key);
|
2024-05-21 23:20:34 +02:00
|
|
|
|
|
|
|
final String? title;
|
2024-05-23 17:41:51 +02:00
|
|
|
final bool showThemeSwitch;
|
|
|
|
final bool showDebug;
|
|
|
|
final bool showSearch;
|
2024-05-21 23:20:34 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return AppBar(
|
|
|
|
title: Text(title ?? 'Simple Cloud Notifier 2.0'),
|
|
|
|
actions: <Widget>[
|
2024-05-23 17:41:51 +02:00
|
|
|
if (showThemeSwitch)
|
|
|
|
Consumer<AppTheme>(
|
|
|
|
builder: (context, appTheme, child) => IconButton(
|
|
|
|
icon: Icon(appTheme.darkMode ? FontAwesomeIcons.solidSun : FontAwesomeIcons.solidMoon),
|
|
|
|
tooltip: 'Debug',
|
|
|
|
onPressed: () {
|
|
|
|
appTheme.switchDarkMode();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
if (!showThemeSwitch) SizedBox.square(dimension: 40),
|
|
|
|
if (showDebug)
|
|
|
|
IconButton(
|
|
|
|
icon: const Icon(FontAwesomeIcons.solidSpiderBlackWidow),
|
2024-05-21 23:20:34 +02:00
|
|
|
tooltip: 'Debug',
|
|
|
|
onPressed: () {
|
2024-05-25 21:36:05 +02:00
|
|
|
Navigator.push(context, MaterialPageRoute<DebugMainPage>(builder: (context) => DebugMainPage()));
|
2024-05-21 23:20:34 +02:00
|
|
|
},
|
|
|
|
),
|
2024-05-23 17:41:51 +02:00
|
|
|
if (!showDebug) SizedBox.square(dimension: 40),
|
|
|
|
if (showSearch)
|
|
|
|
IconButton(
|
|
|
|
icon: const Icon(FontAwesomeIcons.solidMagnifyingGlass),
|
|
|
|
tooltip: 'Search',
|
|
|
|
onPressed: () {},
|
|
|
|
),
|
|
|
|
if (!showSearch) SizedBox.square(dimension: 40),
|
2024-05-21 23:20:34 +02:00
|
|
|
],
|
|
|
|
backgroundColor: Theme.of(context).secondaryHeaderColor,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Size get preferredSize => const Size.fromHeight(kToolbarHeight);
|
|
|
|
}
|