freezer/lib/ui/elements.dart

86 lines
2.2 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2021-09-01 12:38:32 +00:00
import 'package:flutter/services.dart';
import 'package:freezer/settings.dart';
class LeadingIcon extends StatelessWidget {
final IconData icon;
2021-09-01 12:38:32 +00:00
final Color? color;
LeadingIcon(this.icon, {this.color});
@override
Widget build(BuildContext context) {
return Container(
width: 42.0,
height: 42.0,
decoration: BoxDecoration(
2021-09-01 12:38:32 +00:00
color: (color ?? Theme.of(context).primaryColor).withOpacity(1.0),
shape: BoxShape.circle),
child: Icon(
icon,
color: Colors.white,
),
);
}
}
//Container with set size to match LeadingIcon
class EmptyLeading extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(width: 42.0, height: 42.0);
}
}
class FreezerAppBar extends StatelessWidget implements PreferredSizeWidget {
2021-09-01 12:38:32 +00:00
final String? title;
final List<Widget> actions;
2021-09-01 12:38:32 +00:00
final Widget? bottom;
//Should be specified if bottom is specified
final double height;
2021-09-01 12:38:32 +00:00
FreezerAppBar(this.title,
{this.actions = const [], this.bottom, this.height = 56.0});
Size get preferredSize => Size.fromHeight(this.height);
@override
Widget build(BuildContext context) {
return Theme(
2021-09-01 12:38:32 +00:00
data: ThemeData(
primaryColor: (Theme.of(context).brightness == Brightness.light)
? Colors.white
: Colors.black),
child: AppBar(
2021-09-01 12:38:32 +00:00
systemOverlayStyle: Theme.of(context).brightness == Brightness.dark
? SystemUiOverlayStyle.dark
: SystemUiOverlayStyle.light,
elevation: 0.0,
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
title: Text(
2021-09-01 12:38:32 +00:00
title!,
style: TextStyle(
fontWeight: FontWeight.w900,
),
),
actions: actions,
2021-09-01 12:38:32 +00:00
bottom: bottom as PreferredSizeWidget?,
),
);
}
}
class FreezerDivider extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Divider(
thickness: 1.5,
indent: 16.0,
endIndent: 16.0,
);
}
}
TextStyle popupMenuTextStyle() {
2021-09-01 12:38:32 +00:00
return TextStyle(color: settings.isDark ? Colors.white : Colors.black);
}