Skip to content

Instantly share code, notes, and snippets.

@SidneyMachara
Created December 13, 2019 08:53
Show Gist options
  • Save SidneyMachara/9fb39d703435a5bb8660685203310ea5 to your computer and use it in GitHub Desktop.
Save SidneyMachara/9fb39d703435a5bb8660685203310ea5 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:easy_tic_tac_toe/pages/welcome.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark(),
home: WelcomePage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment