Skip to content

Instantly share code, notes, and snippets.

@rurickdev
Last active May 23, 2019 14:39
Show Gist options
  • Save rurickdev/fcd7edf35bec076b923efad594f6976a to your computer and use it in GitHub Desktop.
Save rurickdev/fcd7edf35bec076b923efad594f6976a to your computer and use it in GitHub Desktop.
Dark Theme Flutter Example 1
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