blob: 8a078776a8da1a219f710e54330f40ebe52ccbdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import 'package:flutter/material.dart';
/// Login screen — will host the credentials form once the auth API is wired.
///
/// Currently a lightweight placeholder; feature implementation will replace
/// the body without touching the router or other screens.
class LoginScreen extends StatelessWidget {
const LoginScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Login')),
body: const Center(child: Text('Login placeholder')),
);
}
}
|