Improved top items lists, improved menus and fixed units

This commit is contained in:
Juan Gilsanz Polo 2023-11-26 05:21:35 +01:00
parent bc8aa3b670
commit 63d57245a7
19 changed files with 713 additions and 767 deletions

View file

@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
class MenuOption {
final IconData? icon;
final String title;
final void Function() action;
final void Function(dynamic) action;
final bool? disabled;
const MenuOption({