fbmobile/lib/ui/widgets/my_appbar.dart
Varakh 7e871bb4b1
All checks were successful
/ build (push) Successful in 5m5s
Fix flutter lints for next major version #noissue
2023-11-14 20:22:12 +01:00

31 lines
775 B
Dart

import 'package:flutter/material.dart';
import '../widgets/about_iconbutton.dart';
class MyAppBar extends AppBar {
static final List<Widget> aboutEnabledWidgets = [AboutIconButton()];
static final List<Widget> aboutDisabledWidgets = [];
MyAppBar(
{super.key,
required Widget title,
List<Widget>? actionWidgets,
bool enableAbout = true})
: super(
title: Row(children: <Widget>[title]),
actions: _renderIconButtons(actionWidgets, enableAbout));
static List<Widget> _renderIconButtons(
List<Widget>? actionWidgets, bool aboutEnabled) {
actionWidgets ??= [];
List<Widget> widgets = [...actionWidgets];
if (aboutEnabled) {
widgets.add(AboutIconButton());
}
return widgets;
}
}