changed tag spacing

This commit is contained in:
Adrian Baumgart 2024-07-26 23:04:47 +02:00
parent c5ab724a9e
commit d33f5757c9
Signed by: rainloreley
SSH Key Fingerprint: SHA256:DrGrohIPualL1UkyUym0K4C+uC5njuzPFBdXgtVZntM

View File

@ -314,7 +314,6 @@ class _ShortURLEditViewState extends State<ShortURLEditView>
], ],
)), )),
child: Wrap( child: Wrap(
runSpacing: 8,
spacing: 8, spacing: 8,
children: tags.map((tag) { children: tags.map((tag) {
var boxColor = stringToColor(tag) var boxColor = stringToColor(tag)
@ -397,7 +396,8 @@ class _ShortURLEditViewState extends State<ShortURLEditView>
child: isSaving child: isSaving
? const Padding( ? const Padding(
padding: EdgeInsets.all(16), padding: EdgeInsets.all(16),
child: CircularProgressIndicator(strokeWidth: 3, color: Colors.white)) child: CircularProgressIndicator(strokeWidth: 3,
color: Colors.white))
: const Icon(Icons.save)), : const Icon(Icons.save)),
); );
} }