123 lines
3.8 KiB
Dart
123 lines
3.8 KiB
Dart
import 'package:aves/model/settings/settings.dart';
|
|
import 'package:aves/theme/themes.dart';
|
|
import 'package:aves/widgets/common/fx/blurred.dart';
|
|
import 'package:aves/widgets/common/fx/borders.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class OverlayButton extends StatelessWidget {
|
|
final Animation<double> scale;
|
|
final BorderRadius? borderRadius;
|
|
final Widget child;
|
|
|
|
const OverlayButton({
|
|
super.key,
|
|
this.scale = kAlwaysCompleteAnimation,
|
|
this.borderRadius,
|
|
required this.child,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final brightness = Theme.of(context).brightness;
|
|
final blurred = settings.enableBlurEffect;
|
|
return ScaleTransition(
|
|
scale: scale,
|
|
child: borderRadius != null
|
|
? BlurredRRect(
|
|
enabled: blurred,
|
|
borderRadius: borderRadius,
|
|
child: Material(
|
|
type: MaterialType.button,
|
|
borderRadius: borderRadius,
|
|
color: Themes.overlayBackgroundColor(brightness: brightness, blurred: blurred),
|
|
child: Ink(
|
|
decoration: BoxDecoration(
|
|
border: AvesBorder.border(context),
|
|
borderRadius: borderRadius,
|
|
),
|
|
child: child,
|
|
),
|
|
),
|
|
)
|
|
: BlurredOval(
|
|
enabled: blurred,
|
|
child: Material(
|
|
type: MaterialType.circle,
|
|
color: Themes.overlayBackgroundColor(brightness: brightness, blurred: blurred),
|
|
child: Ink(
|
|
decoration: BoxDecoration(
|
|
border: AvesBorder.border(context),
|
|
shape: BoxShape.circle,
|
|
),
|
|
child: child,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
// icon (24) + icon padding (8) + button padding (16) + border (1 or 2)
|
|
static double getSize(BuildContext context) => 48.0 + AvesBorder.curvedBorderWidth * 2;
|
|
}
|
|
|
|
class ScalingOverlayTextButton extends StatelessWidget {
|
|
final Animation<double> scale;
|
|
final VoidCallback? onPressed;
|
|
final Widget child;
|
|
|
|
const ScalingOverlayTextButton({
|
|
super.key,
|
|
required this.scale,
|
|
this.onPressed,
|
|
required this.child,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizeTransition(
|
|
sizeFactor: scale,
|
|
child: OverlayTextButton(
|
|
onPressed: onPressed,
|
|
child: child,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class OverlayTextButton extends StatelessWidget {
|
|
final VoidCallback? onPressed;
|
|
final Widget child;
|
|
|
|
const OverlayTextButton({
|
|
super.key,
|
|
this.onPressed,
|
|
required this.child,
|
|
});
|
|
|
|
static const _borderRadius = 123.0;
|
|
static final _minSize = MaterialStateProperty.all<Size>(const Size(kMinInteractiveDimension, kMinInteractiveDimension));
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final blurred = settings.enableBlurEffect;
|
|
final theme = Theme.of(context);
|
|
return BlurredRRect.all(
|
|
enabled: blurred,
|
|
borderRadius: _borderRadius,
|
|
child: OutlinedButton(
|
|
onPressed: onPressed,
|
|
style: ButtonStyle(
|
|
backgroundColor: MaterialStateProperty.all<Color>(Themes.overlayBackgroundColor(brightness: theme.brightness, blurred: blurred)),
|
|
foregroundColor: MaterialStateProperty.all<Color>(theme.colorScheme.onSurface),
|
|
overlayColor: theme.brightness == Brightness.dark ? MaterialStateProperty.all<Color>(Colors.white.withOpacity(0.12)) : null,
|
|
minimumSize: _minSize,
|
|
side: MaterialStateProperty.all<BorderSide>(AvesBorder.curvedSide(context)),
|
|
shape: MaterialStateProperty.all<OutlinedBorder>(const RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.all(Radius.circular(_borderRadius)),
|
|
)),
|
|
),
|
|
child: child,
|
|
),
|
|
);
|
|
}
|
|
}
|