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