Skip to content

Instantly share code, notes, and snippets.

View r-yeates's full-sized avatar
🦜

Rob Yeates r-yeates

🦜
  • United Kingdom
  • 02:58 (UTC)
View GitHub Profile
@r-yeates
r-yeates / main.dart
Last active September 1, 2022 03:44
Junk Free main.dart
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {