Last active
May 23, 2019 14:39
-
-
Save rurickdev/fcd7edf35bec076b923efad594f6976a to your computer and use it in GitHub Desktop.
Dark Theme Flutter Example 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MaterialApp( | |
title: 'Flutter Ejemplo Tema Oscuro', | |
//Tema Principal, se usa cuando no esta activo el modo oscuro | |
theme: ThemeData( | |
//Se india que este tema tiene un brillo luminoso | |
brightness: Brightness.light, | |
primarySwatch: Colors.pink, | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment