AppbarWidget.story constructor
AppbarWidget.story(})
Implementation
AppbarWidget.story(
BuildContext context, {
Key? key,
String? title,
Function? onSave,
Widget? icon,
Function? onDelete,
Function? onClose,
}) : super(
key: key,
backgroundColor: Theme.of(context).colorScheme.background,
leading: IconButton(
icon: icon ??
Icon(
Icons.arrow_back_ios,
color: Theme.of(context).colorScheme.secondary,
size: 24,
),
onPressed: () {
onClose?.call();
Navigator.pop(context);
},
),
title: Text(
title ?? ' ',
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.w600,
color: Theme.of(context).colorScheme.secondary,
),
),
actions: <Widget>[
if (onSave != null)
TextButton(
onPressed: () {
onSave();
Navigator.pop(context);
},
child: Text(
'Save',
style: TextStyle(
fontSize: 16, color: Theme.of(context).primaryColor),
),
),
if (onDelete != null)
IconButton(
onPressed: onDelete as void Function()?,
icon: const Icon(
Icons.delete_forever,
color: Colors.red,
),
),
const SizedBox(width: 20)
],
);