Skip to content

Instantly share code, notes, and snippets.

@sharmajsr
sharmajsr / t.dart
Last active March 14, 2023 17:16
This is a tic tac toe game
//https://dartpad.dev/fcae86613e825e93bb926916ca35e681
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,