Files
PiliPlus/lib/plugin/pl_player/widgets/common_btn.dart
bggRGjQaUbCoE f4866258d2 opt: code
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2024-11-28 16:18:10 +08:00

25 lines
397 B
Dart

import 'package:flutter/material.dart';
class ComBtn extends StatelessWidget {
final Widget? icon;
final GestureTapCallback? fuc;
const ComBtn({
this.icon,
this.fuc,
super.key,
});
@override
Widget build(BuildContext context) {
return SizedBox(
width: 34,
height: 34,
child: InkWell(
onTap: fuc,
child: icon!,
),
);
}
}