import 'package:flutter/material.dart'; class HomePage extends StatefulWidget { const HomePage({super.key}); @override State createState() { // return _HomePageState(); } } class _HomePageState extends State { @override Widget build(BuildContext context) { // return Scaffold( backgroundColor: Theme.of(context).scaffoldBackgroundColor, appBar: AppBar( backgroundColor: Theme.of(context).scaffoldBackgroundColor, title: Text("Messaging App"), titleTextStyle: TextStyle(fontSize: 15), ), ); } }