main.dart 623 B

1234567891011121314151617181920212223242526272829303132
  1. import 'package:flutter/material.dart';
  2. void main() {
  3. runApp(const PhysiGo());
  4. }
  5. class PhysiGo extends StatelessWidget {
  6. const PhysiGo({Key? key}) : super(key: key);
  7. @override
  8. Widget build(BuildContext context) {
  9. return MaterialApp(
  10. title: 'PhysiGo',
  11. theme: ThemeData(
  12. primarySwatch: Colors.blue,
  13. ),
  14. home: const HomePage(),
  15. );
  16. }
  17. }
  18. class HomePage extends StatelessWidget {
  19. const HomePage({Key? key}) : super(key: key);
  20. @override
  21. Widget build(BuildContext context) {
  22. return const Scaffold(
  23. body: Center(
  24. child: Text("Home"),
  25. ),
  26. );
  27. }
  28. }