27 lines
599 B
Dart
27 lines
599 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class HomePage extends StatefulWidget {
|
|
const HomePage({super.key});
|
|
|
|
@override
|
|
State<StatefulWidget> createState() {
|
|
//
|
|
return _HomePageState();
|
|
}
|
|
}
|
|
|
|
class _HomePageState extends State<HomePage> {
|
|
@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),
|
|
),
|
|
);
|
|
}
|
|
}
|