mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
35 lines
1 KiB
Dart
35 lines
1 KiB
Dart
|
// 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,
|
||
|
// ),
|
||
|
// );
|
||
|
// }
|
||
|
// }
|