Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

PopupMenu Component #2

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/flutter_sdk_util.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
library flutter_sdk_util;

export 'src/pinch_zoom.dart';
export 'src/popup_menu_bar.dart';
85 changes: 85 additions & 0 deletions lib/src/popup_menu_bar.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
import 'package:flutter/material.dart';

class MenuEntry {
const MenuEntry({
required this.child,
this.shortcut,
this.onPressed,
this.menuChildren,
}) : assert(
menuChildren == null || onPressed == null,
'onPressed is ignored if menuChildren are provided',
);

final Widget child;

final MenuSerializableShortcut? shortcut;
final VoidCallback? onPressed;
final List<MenuEntry>? menuChildren;

static List<Widget> build(List<MenuEntry> selections) {
Widget buildSelection(MenuEntry selection) {
if (selection.menuChildren != null) {
return SubmenuButton(
menuChildren: MenuEntry.build(selection.menuChildren!),
child: selection.child,
);
}

return MenuItemButton(
shortcut: selection.shortcut,
onPressed: selection.onPressed,
style: ButtonStyle(
alignment: Alignment.center,
backgroundColor: MaterialStateProperty.all(Colors.transparent),
padding: MaterialStateProperty.all(EdgeInsets.zero),
),
child: selection.child,
);
}

return selections.map<Widget>(buildSelection).toList();
}

static Map<MenuSerializableShortcut, Intent> shortcuts(List<MenuEntry> selections) {
final Map<MenuSerializableShortcut, Intent> result = <MenuSerializableShortcut, Intent>{};
for (final MenuEntry selection in selections) {
if (selection.menuChildren != null) {
result.addAll(MenuEntry.shortcuts(selection.menuChildren!));
} else {
if (selection.shortcut != null && selection.onPressed != null) {
result[selection.shortcut!] = VoidCallbackIntent(selection.onPressed!);
}
}
}
return result;
}
}

class PopupMenuBar extends StatelessWidget {
const PopupMenuBar({
super.key,
required this.child,
required this.entries,
});

final Widget child;
final List<MenuEntry> entries;

@override
Widget build(BuildContext context) {
return MenuBar(
style: MenuStyle(
backgroundColor: MaterialStateProperty.all(Colors.transparent),
shadowColor: MaterialStateProperty.all(Colors.transparent),
surfaceTintColor: MaterialStateProperty.all(Colors.transparent),
padding: MaterialStateProperty.all(EdgeInsets.zero),
),
children: MenuEntry.build(
[
MenuEntry(child: child, menuChildren: entries),
],
),
);
}
}