sitzung luc
This commit is contained in:
@@ -351,9 +351,9 @@ class _DatumState extends State<Datum> {
|
||||
Text(
|
||||
'${datum?.day}. ${datum?.month}. ${datum?.year}',
|
||||
),
|
||||
const SizedBox(
|
||||
height: 8,
|
||||
),
|
||||
//const SizedBox(
|
||||
// height: 2,
|
||||
//),
|
||||
ElevatedButton(
|
||||
onPressed: () async {
|
||||
final date = await pickDate();
|
||||
@@ -949,18 +949,7 @@ class _OrtInfoState extends State<OrtInfo> {
|
||||
flex: 2,
|
||||
child: TextField(
|
||||
decoration: InputDecoration(
|
||||
hintText: AppLocalizations.of(context)!.ortinfo,
|
||||
enabledBorder: widget.ortInfoC.text.isEmpty
|
||||
? const UnderlineInputBorder(
|
||||
borderSide: BorderSide(color: Colors.red))
|
||||
: const UnderlineInputBorder(
|
||||
borderSide: BorderSide(color: Colors.green)),
|
||||
focusedBorder: widget.ortInfoC.text.isEmpty
|
||||
? const UnderlineInputBorder(
|
||||
borderSide: BorderSide(color: Colors.red))
|
||||
: const UnderlineInputBorder(
|
||||
borderSide: BorderSide(color: Colors.green)),
|
||||
),
|
||||
hintText: AppLocalizations.of(context)!.ortinfo,),
|
||||
controller: widget.ortInfoC,
|
||||
onChanged: (value) => setState(() {
|
||||
widget.ortInfoC.text = value;
|
||||
@@ -1417,7 +1406,7 @@ class MEZ extends StatefulWidget {
|
||||
final Function(String) onMEZChanged;
|
||||
final String initialMEZ;
|
||||
|
||||
const MEZ({super.key, required this.onMEZChanged, this.initialMEZ = 'aktiv'});
|
||||
const MEZ({super.key, required this.onMEZChanged, this.initialMEZ = 'sommerzeit'});
|
||||
|
||||
@override
|
||||
State<MEZ> createState() => _MEZState();
|
||||
@@ -1438,9 +1427,9 @@ class _MEZState extends State<MEZ> {
|
||||
children: [
|
||||
ListTile(
|
||||
visualDensity: const VisualDensity(vertical: -4),
|
||||
title: Text(AppLocalizations.of(context)!.mez),
|
||||
title: Text(AppLocalizations.of(context)!.sommerzeit),
|
||||
leading: Radio<String>(
|
||||
value: 'mez',
|
||||
value: 'sommerzeit',
|
||||
groupValue: _selectedMEZ,
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
@@ -1452,9 +1441,9 @@ class _MEZState extends State<MEZ> {
|
||||
),
|
||||
ListTile(
|
||||
visualDensity: const VisualDensity(vertical: -4),
|
||||
title: Text(AppLocalizations.of(context)!.unklar),
|
||||
title: Text(AppLocalizations.of(context)!.winterzeit),
|
||||
leading: Radio<String>(
|
||||
value: 'unklar',
|
||||
value: 'winterzeit',
|
||||
groupValue: _selectedMEZ,
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
|
||||
Reference in New Issue
Block a user