Last active
December 13, 2019 10:08
-
-
Save SidneyMachara/89dbe1e7a2032556576b46619b2373ee to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import 'package:flutter/material.dart'; | |
//TODO import GameBtn class | |
//TODO import Player class | |
class GamePage extends StatefulWidget { | |
@override | |
_GamePageState createState() => _GamePageState(); | |
} | |
class _GamePageState extends State<GamePage> { | |
//TODO initialise array of GameBtn's | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
//TODO build game board layout | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment