157 lines
5.8 KiB
Dart
157 lines
5.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import '../controllers/home_controller.dart';
|
|
import '../widgets/info_item.dart';
|
|
import '../widgets/primary_button.dart';
|
|
import '../widgets/secondary_button.dart';
|
|
|
|
class HomePage extends GetView<HomeController> {
|
|
static const String namedRoute = '/home-page';
|
|
const HomePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var homeCtrl = controller;
|
|
return Scaffold(
|
|
body: Container(
|
|
decoration: BoxDecoration(
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.bottomRight,
|
|
colors: [Colors.blue.shade50, Colors.purple.shade50],
|
|
),
|
|
),
|
|
child: SafeArea(
|
|
child: SingleChildScrollView(
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 24.0,
|
|
vertical: 32.0,
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
// Header & Image
|
|
Hero(
|
|
tag: 'filament_image',
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(16),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Colors.black.withAlpha(25),
|
|
blurRadius: 20,
|
|
offset: Offset(0, 10),
|
|
),
|
|
],
|
|
),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(16),
|
|
child: Image.asset(
|
|
'assets/images/fillament_pla_home.png',
|
|
width: 150,
|
|
height: 150,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
SizedBox(height: 20),
|
|
Text(
|
|
'Filament Verwaltung',
|
|
textAlign: TextAlign.center,
|
|
style: Theme.of(context).textTheme.headlineLarge?.copyWith(
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.deepPurple.shade700,
|
|
),
|
|
),
|
|
SizedBox(height: 12),
|
|
Text(
|
|
'Verwalte deine Filamente einfach und übersichtlich',
|
|
textAlign: TextAlign.center,
|
|
style: Theme.of(context).textTheme.bodyLarge?.copyWith(
|
|
color: Colors.grey.shade700,
|
|
),
|
|
),
|
|
SizedBox(height: 20),
|
|
|
|
// Info Card
|
|
Card(
|
|
elevation: 4,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(16),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(20.0),
|
|
child: Column(
|
|
children: [
|
|
buildInfoItem(
|
|
icon: Icons.storage_rounded,
|
|
text: 'Lokale Speicherung auf diesem Gerät',
|
|
color: Colors.blue,
|
|
),
|
|
SizedBox(height: 12),
|
|
buildInfoItem(
|
|
icon: Icons.list_alt_rounded,
|
|
text: 'Filament laden → zur Liste',
|
|
color: Colors.green,
|
|
),
|
|
SizedBox(height: 12),
|
|
buildInfoItem(
|
|
icon: Icons.cloud_download_rounded,
|
|
text: 'Backup → Download als JSON',
|
|
color: Colors.orange,
|
|
),
|
|
SizedBox(height: 12),
|
|
buildInfoItem(
|
|
icon: Icons.cloud_upload_rounded,
|
|
text: 'Wiederherstellen → Upload JSON',
|
|
color: Colors.purple,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
SizedBox(height: 20),
|
|
|
|
// Action Buttons
|
|
buildPrimaryButton(
|
|
context: context,
|
|
icon: Icons.inventory_2_rounded,
|
|
label: 'Filamente laden',
|
|
onPressed: () => homeCtrl.loadFilaments(),
|
|
color: Colors.deepPurple,
|
|
),
|
|
SizedBox(height: 16),
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: buildSecondaryButton(
|
|
context: context,
|
|
icon: Icons.save_alt_rounded,
|
|
label: 'Backup',
|
|
onPressed: () => homeCtrl.downloadFilaments(),
|
|
color: Colors.blue,
|
|
),
|
|
),
|
|
SizedBox(width: 16),
|
|
Expanded(
|
|
child: buildSecondaryButton(
|
|
context: context,
|
|
icon: Icons.restore_rounded,
|
|
label: 'Wiederherstellen',
|
|
onPressed: () => homeCtrl.restoreFilaments(),
|
|
color: Colors.teal,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|