mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
feat: fav detail page: multi select opt: reply item opt: load more Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
31 lines
704 B
Dart
31 lines
704 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
Widget iconButton({
|
|
required BuildContext context,
|
|
String? tooltip,
|
|
required IconData icon,
|
|
required VoidCallback? onPressed,
|
|
double size = 36,
|
|
Color? bgColor,
|
|
Color? iconColor,
|
|
}) {
|
|
return SizedBox(
|
|
width: size,
|
|
height: size,
|
|
child: IconButton(
|
|
tooltip: tooltip,
|
|
onPressed: onPressed,
|
|
icon: Icon(
|
|
icon,
|
|
size: size / 2,
|
|
color: iconColor ?? Theme.of(context).colorScheme.onSecondaryContainer,
|
|
),
|
|
style: IconButton.styleFrom(
|
|
padding: EdgeInsets.all(0),
|
|
backgroundColor:
|
|
bgColor ?? Theme.of(context).colorScheme.secondaryContainer,
|
|
),
|
|
),
|
|
);
|
|
}
|