import 'package:flutter/material.dart'; void main() { runApp(const PhysiGo()); } class PhysiGo extends StatelessWidget { const PhysiGo({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( title: 'PhysiGo', theme: ThemeData( primarySwatch: Colors.blue, ), home: const HomePage(), ); } } class HomePage extends StatelessWidget { const HomePage({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const Scaffold( body: Center( child: Text("Home"), ), ); } }