mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-05 00:13:12 +00:00
8 lines
152 B
Dart
8 lines
152 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
final shadow8 = BoxShadow(
|
|
offset: Offset(0, 4),
|
|
blurRadius: 8,
|
|
color: Colors.black.withOpacity(.08),
|
|
);
|