stack_wallet/lib/widgets/rounded_white_container.dart

44 lines
1.1 KiB
Dart

import 'package:flutter/material.dart';
import 'package:stackwallet/utilities/theme/stack_colors.dart';
import 'package:stackwallet/widgets/rounded_container.dart';
class RoundedWhiteContainer extends StatelessWidget {
const RoundedWhiteContainer({
Key? key,
this.child,
this.padding = const EdgeInsets.all(12),
this.radiusMultiplier = 1.0,
this.width,
this.height,
this.borderColor,
this.hoverColor,
this.boxShadow,
this.onPressed,
}) : super(key: key);
final Widget? child;
final EdgeInsets padding;
final double radiusMultiplier;
final double? width;
final double? height;
final Color? borderColor;
final Color? hoverColor;
final List<BoxShadow>? boxShadow;
final VoidCallback? onPressed;
@override
Widget build(BuildContext context) {
return RoundedContainer(
color: Theme.of(context).extension<StackColors>()!.popupBG,
padding: padding,
radiusMultiplier: radiusMultiplier,
width: width,
height: height,
borderColor: borderColor,
boxShadow: boxShadow,
hoverColor: hoverColor,
onPressed: onPressed,
child: child,
);
}
}