/* 
 * This file is part of Stack Wallet.
 * 
 * Copyright (c) 2023 Cypher Stack
 * All Rights Reserved.
 * The code is distributed under GPLv3 license, see LICENSE file for details.
 * Generated by Cypher Stack on 2023-05-26
 *
 */

// import 'package:flutter/material.dart';
// import 'package:stackwallet/utilities/cfcolors.dart';
//   const GradientCard(
//       {Key key,
//       this.child,
//       @required this.gradient,
//       this.backgroundColorForTransparentGradient = Colors.white,
//       this.circularBorderRadius = 0.0})
//       : super(key: key);
//
//   final Widget child;
//   final Gradient gradient;
//   final Color backgroundColorForTransparentGradient;
//   final double circularBorderRadius;
//
//   @override
//   Widget build(BuildContext context) {
//     return Material(
//       color: backgroundColorForTransparentGradient,
//       borderRadius: BorderRadius.circular(circularBorderRadius),
//       elevation: 0,
//       child: Container(
//         decoration: BoxDecoration(
//           gradient: gradient,
//           borderRadius: BorderRadius.circular(circularBorderRadius),
//           boxShadow: [
//             CFColors.standardBoxShadow,
//           ],
//         ),
//         child: child,
//       ),
//     );
//   }
// }