feat: new send danmaku panel

Closes #98

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-01-04 21:48:07 +08:00
parent 58fd373e8c
commit 27e39d4de5
6 changed files with 656 additions and 97 deletions

View File

@@ -1,17 +1,17 @@
import 'package:flutter/material.dart';
class ToolbarIconButton extends StatelessWidget {
final VoidCallback onPressed;
final VoidCallback? onPressed;
final Icon icon;
final bool selected;
final String tooltip;
final String? tooltip;
const ToolbarIconButton({
super.key,
required this.onPressed,
this.onPressed,
required this.icon,
required this.selected,
required this.tooltip,
this.tooltip,
});
@override