Files
fApp/lib/screens/login.dart
Flummi 2b5aaad331
All checks were successful
Flutter Schmutter / build (push) Successful in 3m48s
v1.4.0+61
2025-06-19 21:45:00 +02:00

135 lines
4.6 KiB
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:f0ckapp/controller/authcontroller.dart';
class LoginScreen extends StatefulWidget {
const LoginScreen({super.key});
@override
State<LoginScreen> createState() => _LoginScreenState();
}
class _LoginScreenState extends State<LoginScreen> {
final AuthController authController = Get.put(AuthController());
final TextEditingController usernameController = TextEditingController();
final TextEditingController passwordController = TextEditingController();
bool _isLoading = false;
void _showMsg(String message, {String title = ''}) {
Get
..closeAllSnackbars()
..snackbar(title, message, snackPosition: SnackPosition.BOTTOM);
}
@override
void dispose() {
usernameController.dispose();
passwordController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(24),
child: Card(
elevation: 8,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
),
child: Padding(
padding: const EdgeInsets.all(24),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Row(
children: [
IconButton(
icon: const Icon(Icons.arrow_back),
tooltip: 'Zurück',
onPressed: () => Get.back(),
),
const SizedBox(width: 8),
Text(
'Login',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
const SizedBox(height: 24),
TextField(
controller: usernameController,
decoration: const InputDecoration(
labelText: 'Benutzername',
prefixIcon: Icon(Icons.person),
border: OutlineInputBorder(),
),
),
const SizedBox(height: 16),
TextField(
controller: passwordController,
obscureText: true,
decoration: const InputDecoration(
labelText: 'Passwort',
prefixIcon: Icon(Icons.lock),
border: OutlineInputBorder(),
),
),
const SizedBox(height: 24),
if (authController.error.value != null)
Text(
authController.error.value!,
style: const TextStyle(color: Colors.red),
),
SizedBox(
width: double.infinity,
child: ElevatedButton(
onPressed: _isLoading
? null
: () async {
setState(() => _isLoading = true);
final bool success = await authController.login(
usernameController.text,
passwordController.text,
);
setState(() => _isLoading = false);
if (!success) {
_showMsg(
'Login fehlgeschlagen!',
title: 'Fehler',
);
} else {
Get.offAllNamed('/');
_showMsg(
'Erfolgreich eingeloggt.',
title: 'Login',
);
}
},
child: _isLoading
? const SizedBox(
width: 24,
height: 24,
child: CircularProgressIndicator(
strokeWidth: 2,
color: Colors.white,
),
)
: const Text('Login'),
),
),
],
),
),
),
),
),
);
}
}