Skip to content

Instantly share code, notes, and snippets.

@pmutisya
Created September 17, 2019 16:02
Widget build(BuildContext context) {
return MaterialApp(
title: 'BusWatch',
theme: ThemeData(
brightness: Brightness.light,
primarySwatch: Colors.orange,
),
darkTheme: ThemeData(
brightness: Brightness.dark,
primarySwatch: Colors.orange
),
home: MyHomePage(),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment