import 'package:flutter/material.dart';
class HomePage extends StatefulWidget { const HomePage({super.key});
@override State<HomePage> createState() => _HomePageState(); }
class _HomePageState extends State<HomePage> {
@override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( elevation: 0, toolbarHeight: 0, backgroundColor: Theme.of(context).colorScheme.surface, ), body: const Center(child: Text('Home')), ); } }
|