Files
MessagingApp/lib/pages/home_page.dart
T
onasanya.lanre 8ec33980c6 Messaging App Initial Commit
Pages Already Implemented Login and Registeration Page
2025-01-01 00:35:25 +00:00

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),
),
);
}
}