mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
32 lines
1.3 KiB
Dart
32 lines
1.3 KiB
Dart
import 'package:awesome_extensions/awesome_extensions.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
import 'package:flutter_translate/flutter_translate.dart';
|
|
|
|
class DefaultAppBar extends AppBar {
|
|
DefaultAppBar(BuildContext context,
|
|
{required super.title, super.key, Widget? leading, List<Widget>? actions})
|
|
: super(
|
|
leading: leading ??
|
|
Container(
|
|
margin: const EdgeInsets.all(4),
|
|
decoration: BoxDecoration(
|
|
color: Colors.black.withAlpha(32),
|
|
shape: BoxShape.circle),
|
|
child:
|
|
SvgPicture.asset('assets/images/vlogo.svg', height: 32)
|
|
.paddingAll(4)),
|
|
actions: (actions ?? <Widget>[])
|
|
..add(
|
|
IconButton(
|
|
icon: const Icon(Icons.settings),
|
|
tooltip: translate('app_bar.settings_tooltip'),
|
|
onPressed: () {
|
|
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(
|
|
content: Text(
|
|
'Accessibility and language options coming soon')));
|
|
},
|
|
),
|
|
));
|
|
}
|