Skip to content

Instantly share code, notes, and snippets.

@JonathanMonga
Created January 21, 2020 18:09
Show Gist options
  • Save JonathanMonga/ed76332bbfeaadeaee47b97e493db829 to your computer and use it in GitHub Desktop.
Save JonathanMonga/ed76332bbfeaadeaee47b97e493db829 to your computer and use it in GitHub Desktop.
body: Center(
child: Text('Text Shadows in Flutter',
textAlign: TextAlign.center,
style: TextStyle(
shadows: [
Shadow(
blurRadius: 10.0,
color: Colors.blue,
offset: Offset(5.0, 5.0),
),
],
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment