Location overview screen and model changes #3

Merged
marco merged 9 commits from development into main 2026-06-19 14:03:45 +02:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit f1c1578620 - Show all commits
+2
View File
@@ -3,6 +3,8 @@ import 'package:flutter/material.dart';
class AppTheme {
AppTheme._();
static const double formColumnSpacing = 12.0;
static ThemeData get lightTheme => _baseTheme(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.indigo,
+2 -1
View File
@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import '../app_theme.dart';
import '../model/callback_models/create_task_request.dart';
import '../model/extensions/controller_context.dart';
import '../model/task.dart';
@@ -80,7 +81,7 @@ class _TaskEditPageState extends State<TaskEditPage> {
horizontal: MediaQuery.of(context).size.width * 0.05,
),
child: Column(
spacing: 12,
spacing: AppTheme.formColumnSpacing,
children: [
SizedBox(height: 6),
TextFormField(