Skip to content

Instantly share code, notes, and snippets.

View vincevargadev's full-sized avatar
:shipit:
Ship it!

Vince Varga vincevargadev

:shipit:
Ship it!
View GitHub Profile
@vincevargadev
vincevargadev / main.dart
Last active July 14, 2020 00:04 — forked from bitsydarel/switching theme without any library.
switching theme without any library.
void main() {
runApp(_SwitchingThemeApp());
}
/// Properties that help me keep track of the example being run.
bool _useMaterial = false;
class _SwitchingThemeApp extends StatefulWidget {
@override
_SwitchingThemeAppState createState() => _SwitchingThemeAppState();