6 lines
259 B
Dart
6 lines
259 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
const List<Shadow> textShadow = <Shadow>[ // man i love this shadow
|
||
|
Shadow(offset: Offset(0.0, 0.0), blurRadius: 3.0, color: Colors.black),
|
||
|
Shadow(offset: Offset(0.0, 0.0), blurRadius: 8.0, color: Colors.black),
|
||
|
];
|