This commit is contained in:
Deven Joshi
2021-05-05 17:23:38 +05:30
parent 9d05cd20e0
commit cca2e38103
@@ -2,7 +2,6 @@ import 'package:flutter/material.dart';
/// Neumorphic button
class StreamNeumorphicButton extends StatelessWidget {
/// Constructor for creating [StreamNeumorphicButton]
const StreamNeumorphicButton({
Key? key,
@@ -18,24 +17,24 @@ class StreamNeumorphicButton extends StatelessWidget {
@override
Widget build(BuildContext context) => Container(
margin: const EdgeInsets.all(8),
height: 40,
width: 40,
decoration: BoxDecoration(
color: backgroundColor,
shape: BoxShape.circle,
boxShadow: [
BoxShadow(
color: Colors.grey.shade700,
offset: const Offset(0, 1),
blurRadius: 0.5,
),
const BoxShadow(
color: Colors.white,
blurRadius: 0.5,
),
],
),
child: child,
);
margin: const EdgeInsets.all(8),
height: 40,
width: 40,
decoration: BoxDecoration(
color: backgroundColor,
shape: BoxShape.circle,
boxShadow: [
BoxShadow(
color: Colors.grey.shade700,
offset: const Offset(0, 1),
blurRadius: 0.5,
),
const BoxShadow(
color: Colors.white,
blurRadius: 0.5,
),
],
),
child: child,
);
}