18 lines
407 B
Dart
18 lines
407 B
Dart
|
|
import 'package:flutter/material.dart';
|
|
|
|
///阴影卡片
|
|
final shadowDecoration = BoxDecoration(
|
|
border: Border.all(color: Colors.black, width: 1.5),
|
|
borderRadius: BorderRadius.circular(5),
|
|
color: Colors.white,
|
|
boxShadow: const [
|
|
BoxShadow(
|
|
color: Color(0xffb5b5b5),
|
|
blurRadius: 2,
|
|
offset: Offset(6, 6),
|
|
spreadRadius: 0,
|
|
blurStyle: BlurStyle.normal,
|
|
),
|
|
],
|
|
); |