You are on page 1of 1

import 'package:flutter/material.

dart';

main() => runApp(const MyApp());

class MyApp extends StatelessWidget {


const MyApp({super.key});

@override
Widget build(context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('GWAPA'),
),
),
);
}
}

You might also like