Skip to content

Instantly share code, notes, and snippets.

@SidneyMachara
Last active December 13, 2019 10:08
Show Gist options
  • Save SidneyMachara/89dbe1e7a2032556576b46619b2373ee to your computer and use it in GitHub Desktop.
Save SidneyMachara/89dbe1e7a2032556576b46619b2373ee to your computer and use it in GitHub Desktop.
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