v1.0.1
This commit is contained in:
52
lib/widgets/shadow_card.dart
Normal file
52
lib/widgets/shadow_card.dart
Normal file
@@ -0,0 +1,52 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_dmzj/app/app_style.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class ShadowCard extends StatelessWidget {
|
||||
final Widget child;
|
||||
final double radius;
|
||||
final Function()? onTap;
|
||||
final Function()? onLongPress;
|
||||
const ShadowCard({
|
||||
required this.child,
|
||||
this.radius = 8.0,
|
||||
this.onTap,
|
||||
this.onLongPress,
|
||||
Key? key,
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(radius),
|
||||
boxShadow: Get.isDarkMode
|
||||
? []
|
||||
: [
|
||||
BoxShadow(
|
||||
blurRadius: 4,
|
||||
color: Colors.grey.withOpacity(.2),
|
||||
)
|
||||
],
|
||||
),
|
||||
child: ClipRRect(
|
||||
borderRadius: BorderRadius.circular(radius),
|
||||
child: Material(
|
||||
color: Theme.of(context).cardColor,
|
||||
borderRadius: BorderRadius.circular(radius),
|
||||
child: InkWell(
|
||||
borderRadius: BorderRadius.circular(radius),
|
||||
onTap: onTap,
|
||||
onLongPress: onLongPress,
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: AppStyle.radius8,
|
||||
),
|
||||
child: child,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user