added view view places header and maybe fixed dropdown button for one thing
This commit is contained in:
9
Todo.txt
9
Todo.txt
@@ -1,21 +1,20 @@
|
|||||||
todo:
|
todo:
|
||||||
maybe auch vorschläge aus templates in dropdown menüs anzeigen
|
|
||||||
im englischen abändern
|
|
||||||
zurückfeld in datenansicht
|
|
||||||
überschriften für view cams
|
|
||||||
dropdown menü fixen (ai fragen)
|
dropdown menü fixen (ai fragen)
|
||||||
fehler beim speichern anzeigen
|
fehler beim speichern anzeigen
|
||||||
nach koordinaten lkr auswählen (esri-leaflet-geocoder)
|
nach koordinaten lkr auswählen (esri-leaflet-geocoder)
|
||||||
fix ktage und nebeneinander positioniere
|
fix ktage und nebeneinander positioniere
|
||||||
textdateien auch an server senden
|
textdateien auch an server senden
|
||||||
ausvon und ausbis fixen (falsches datum übergeben (20000-01-01))
|
ausvon und ausbis fixen (falsches datum übergeben (20000-01-01))
|
||||||
|
zurückfeld in datenansicht
|
||||||
|
maybe auch vorschläge aus templates in dropdown menüs anzeigen
|
||||||
|
im englischen abändern
|
||||||
|
|
||||||
keine ahnung obs funktioniert:
|
keine ahnung obs funktioniert:
|
||||||
eintrg in db wenn http response (in sent column)
|
eintrg in db wenn http response (in sent column)
|
||||||
|
|
||||||
|
|
||||||
not to do:
|
not to do:
|
||||||
|
überschriften für view cams
|
||||||
schritte latlang umbenennen
|
schritte latlang umbenennen
|
||||||
gespeicherten ordner anzeigen
|
gespeicherten ordner anzeigen
|
||||||
Überall absätze machen und textfeld größer wenn langer text
|
Überall absätze machen und textfeld größer wenn langer text
|
||||||
|
|||||||
@@ -126,6 +126,22 @@ class _ViewCamsState extends State<ViewCams> {
|
|||||||
),
|
),
|
||||||
body: Column(
|
body: Column(
|
||||||
children: [
|
children: [
|
||||||
|
const SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Text(AppLocalizations.of(context)!.placedata),
|
||||||
|
const SizedBox(
|
||||||
|
width: 250,
|
||||||
|
),
|
||||||
|
Text(AppLocalizations.of(context)!.sent),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 15,
|
||||||
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: ListView.builder(
|
child: ListView.builder(
|
||||||
itemCount: snapshot.data!.length,
|
itemCount: snapshot.data!.length,
|
||||||
@@ -149,22 +165,24 @@ class _ViewCamsState extends State<ViewCams> {
|
|||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
borderRadius:
|
borderRadius:
|
||||||
BorderRadius.circular(12)),
|
BorderRadius.circular(12)),
|
||||||
|
|
||||||
child: Container(
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
decoration:
|
borderRadius:
|
||||||
BoxDecoration(
|
BorderRadius.circular(12),
|
||||||
borderRadius: BorderRadius.circular(12),
|
color:
|
||||||
color: Theme.of(context).cardColor,
|
Theme.of(context).cardColor,
|
||||||
boxShadow: [
|
boxShadow: [
|
||||||
BoxShadow(
|
BoxShadow(
|
||||||
color: Theme.of(context).primaryColor,
|
color: Theme.of(context)
|
||||||
|
.primaryColor,
|
||||||
spreadRadius: 7,
|
spreadRadius: 7,
|
||||||
blurRadius: 7,
|
blurRadius: 7,
|
||||||
offset: const Offset(0, 3))
|
offset:
|
||||||
|
const Offset(0, 3))
|
||||||
]),
|
]),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding:
|
||||||
|
const EdgeInsets.all(8.0),
|
||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment:
|
crossAxisAlignment:
|
||||||
@@ -235,7 +253,6 @@ class _ViewCamsState extends State<ViewCams> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user