import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), home: const MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State createState() => _MyHomePageState(); } class _MyHomePageState extends State { @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text('Login', style: TextStyle(color: Colors.deepPurple, fontSize: 45), ), Text('Email Address' style: TextStyle(color: Colors.deepPurple)), TextField( decoration: InputDecoration( icon: Icon(Icons.lock), iconColor: Icon(Icons.lock), labelText: 'Please enter your email address', ), ), Text('Password' style: TextStyle(color: Colors.deepPurple)), TextField( obscureText: true, decoration: InputDecoration( icon: Icon(Icons.lock), iconColor: Icon(Icons.lock), labelText: 'Please enter your password', ), ), ElevatedButton(child: Text('Login'), onPressed: () { ScaffoldMessenger.of(context).showSnackBar( SnackBar(content: Text('Logged in Successfully!')), ); }, ) ] ) ) ); } }