- import 'package:flutter/material.dart';
- class LoginScreen extends StatelessWidget {
- const LoginScreen({super.key});
- @override
- Widget build(BuildContext context) {
- return Card(
- margin: const EdgeInsets.symmetric(vertical: 165, horizontal: 89),
- elevation: 54,
- child: Column(
- children: [
- const Image(
- image: AssetImage('assets/images/1160082.png'),
- ),
- const Text(
- 'User Login',
- style: TextStyle(fontSize: 35),
- ),
- // ignore: prefer_const_constructors
- TextField(
- keyboardType: TextInputType.number,
- decoration: const InputDecoration(hintText: 'Phone Number'),
- ),
- // ignore: prefer_const_constructors
- TextField(
- keyboardType: TextInputType.visiblePassword,
- decoration: const InputDecoration(hintText: 'Password'),
- ),
- ElevatedButton(onPressed: () {}, child: const Text('Login'))
- ],
- ),
- );
- }
- }
