|
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),
|
|
]; |