mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-28 13:20:16 +08:00
* opt: danmaku weight
* opt: cache clean
* opt: level img
* opt: play icon
* opt: svg big-vip
* opt: webview ua
* opt: simple dialog
* feat: export vtt
* tweak
* opt: mapIndexed
* feat: more subtitle
* refa: settings page
* feat: codec list options
* drawPath
Signed-off-by: dom <githubaccount56556@proton.me>
* custom dialog option
Signed-off-by: dom <githubaccount56556@proton.me>
* update
Signed-off-by: dom <githubaccount56556@proton.me>
* Revert "drawPath"
This reverts commit e8a4b19f0f.
* opt: _initStreamIndex
* fix: avoid gap
* fix: scale [skip ci]
* fix: hide repost menu not login
* tweaks
Signed-off-by: dom <githubaccount56556@proton.me>
---------
Co-authored-by: dom <githubaccount56556@proton.me>
30 lines
625 B
Dart
30 lines
625 B
Dart
import 'package:PiliPlus/utils/platform_utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
final EdgeInsets _padding = PlatformUtils.isMobile
|
|
? const .symmetric(horizontal: 16, vertical: 14)
|
|
: const .symmetric(horizontal: 16, vertical: 10);
|
|
|
|
class DialogOption extends StatelessWidget {
|
|
const DialogOption({
|
|
super.key,
|
|
this.onPressed,
|
|
this.child,
|
|
});
|
|
|
|
final VoidCallback? onPressed;
|
|
|
|
final Widget? child;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return InkWell(
|
|
onTap: onPressed,
|
|
child: Padding(
|
|
padding: _padding,
|
|
child: child,
|
|
),
|
|
);
|
|
}
|
|
}
|