File tree Expand file tree Collapse file tree 1 file changed +17
-18
lines changed
lib/com/hydrologis/smash/import_export_plugins/export/gtt Expand file tree Collapse file tree 1 file changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -363,30 +363,24 @@ class _GttExportWidgetState extends State<GttExportWidget> {
363
363
bold: true ),
364
364
),
365
365
Padding (
366
- padding: SmashUI
367
- .defaultPadding (),
368
- child: SmashUI .smallText (
369
- IEL
370
- .of (context)
371
- .gttExport_dataUploadedSelectedProject, //"The following data will be uploaded upon sync."
372
- color: Colors .grey),
373
- ),
374
- Padding (
375
- padding: SmashUI
376
- .defaultPadding (),
366
+ padding:
367
+ EdgeInsets .symmetric (
368
+ vertical: SmashUI
369
+ .DEFAULT_PADDING ,
370
+ horizontal: 24 ),
377
371
child: SmashUI .smallText (
378
- IEL
379
- .of (context)
380
- .gttExport_contactAdmin, //"The following data will be uploaded upon sync."
372
+ //"The following data will be uploaded upon sync. If there is no available project, please contact your admin."
373
+ "${IEL .of (context ).gttExport_dataUploadedSelectedProject } ${IEL .of (context ).gttExport_contactAdmin }" ,
381
374
color: Colors .grey),
382
375
),
383
376
Expanded (
384
377
child: ListView (
378
+ padding: EdgeInsets .all (
379
+ SmashUI
380
+ .DEFAULT_PADDING ),
385
381
children: < Widget > [
386
382
// projWidget,
387
- SizedBox (
388
- height: 32 ,
389
- ),
383
+ SizedBox (height: 8 ),
390
384
ListTile (
391
385
leading: Icon (
392
386
SmashIcons
@@ -397,6 +391,7 @@ class _GttExportWidgetState extends State<GttExportWidget> {
397
391
title: SmashUI .normalText (
398
392
"${IEL .of (context ).gttExport_formNotes }: $_formNotesCount " ), //
399
393
),
394
+ SizedBox (height: 16 ),
400
395
ListTile (
401
396
leading: Icon (
402
397
SmashIcons .logIcon,
@@ -415,9 +410,10 @@ class _GttExportWidgetState extends State<GttExportWidget> {
415
410
setState (() =>
416
411
_selectedGpsLogProj =
417
412
s.toString ()),
413
+ isExpanded: true ,
418
414
),
419
415
),
420
-
416
+ SizedBox (height : 16 ),
421
417
ListTile (
422
418
leading: Icon (
423
419
SmashIcons
@@ -439,8 +435,10 @@ class _GttExportWidgetState extends State<GttExportWidget> {
439
435
_selectedSimpleNotesProj =
440
436
s.toString ();
441
437
}),
438
+ isExpanded: true ,
442
439
),
443
440
),
441
+ SizedBox (height: 16 ),
444
442
ListTile (
445
443
leading: Icon (
446
444
SmashIcons
@@ -460,6 +458,7 @@ class _GttExportWidgetState extends State<GttExportWidget> {
460
458
setState (() =>
461
459
_selectedImagesProj =
462
460
s.toString ()),
461
+ isExpanded: true ,
463
462
),
464
463
),
465
464
],
You can’t perform that action at this time.
0 commit comments