fixed alignment in anzahlen, added and finished 3rd step created hinweise widget, removed domain, changed letzter_niederschlag.dart to Dropdown
time
This commit is contained in:
@@ -1,7 +1,27 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class Anzahlen extends StatefulWidget {
|
||||
const Anzahlen({super.key});
|
||||
final TextEditingController losungAnz;
|
||||
final TextEditingController losungGes;
|
||||
final TextEditingController losungGen;
|
||||
final TextEditingController urinAnz;
|
||||
final TextEditingController urinGen;
|
||||
final TextEditingController oestrAnz;
|
||||
final TextEditingController oestrGen;
|
||||
final TextEditingController haarAnz;
|
||||
final TextEditingController haarGen;
|
||||
|
||||
const Anzahlen(
|
||||
{super.key,
|
||||
required this.losungAnz,
|
||||
required this.losungGes,
|
||||
required this.losungGen,
|
||||
required this.urinAnz,
|
||||
required this.urinGen,
|
||||
required this.oestrAnz,
|
||||
required this.oestrGen,
|
||||
required this.haarAnz,
|
||||
required this.haarGen});
|
||||
|
||||
@override
|
||||
AnzahlenState createState() => AnzahlenState();
|
||||
@@ -41,7 +61,7 @@ class AnzahlenState extends State<Anzahlen> {
|
||||
child: Align(
|
||||
alignment: Alignment.bottomLeft,
|
||||
child: Text(
|
||||
"daven eingesammelt",
|
||||
"davon eingesammelt",
|
||||
)),
|
||||
),
|
||||
const SizedBox(
|
||||
@@ -57,13 +77,14 @@ class AnzahlenState extends State<Anzahlen> {
|
||||
],
|
||||
),
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
Expanded(
|
||||
flex: 6,
|
||||
child: Align(
|
||||
alignment: Alignment.bottomLeft,
|
||||
child: Text(
|
||||
"daven Genetikproben",
|
||||
"davon Genetikproben",
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -76,9 +97,9 @@ class AnzahlenState extends State<Anzahlen> {
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
const Divider(height: 40,),
|
||||
|
||||
const Divider(
|
||||
height: 40,
|
||||
),
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
@@ -104,7 +125,7 @@ class AnzahlenState extends State<Anzahlen> {
|
||||
child: Align(
|
||||
alignment: Alignment.bottomLeft,
|
||||
child: Text(
|
||||
"daven Genetikproben",
|
||||
"davon Genetikproben",
|
||||
)),
|
||||
),
|
||||
const SizedBox(
|
||||
@@ -119,9 +140,9 @@ class AnzahlenState extends State<Anzahlen> {
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
const Divider(height: 40,),
|
||||
|
||||
const Divider(
|
||||
height: 40,
|
||||
),
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
@@ -147,7 +168,7 @@ class AnzahlenState extends State<Anzahlen> {
|
||||
child: Align(
|
||||
alignment: Alignment.bottomLeft,
|
||||
child: Text(
|
||||
"daven Genetikproben",
|
||||
"davon Genetikproben",
|
||||
)),
|
||||
),
|
||||
const SizedBox(
|
||||
@@ -162,9 +183,9 @@ class AnzahlenState extends State<Anzahlen> {
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
const Divider(height: 40,),
|
||||
|
||||
const Divider(
|
||||
height: 40,
|
||||
),
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
@@ -190,7 +211,7 @@ class AnzahlenState extends State<Anzahlen> {
|
||||
child: Align(
|
||||
alignment: Alignment.bottomLeft,
|
||||
child: Text(
|
||||
"daven Genetikproben",
|
||||
"davon Genetikproben",
|
||||
)),
|
||||
),
|
||||
const SizedBox(
|
||||
|
||||
Reference in New Issue
Block a user