Мелкие правки по переводу

This commit is contained in:
Andrew 2023-05-18 12:20:23 +07:00
parent 159a88f006
commit 30f15dc40c
2 changed files with 3 additions and 3 deletions

View file

@ -149,7 +149,7 @@ class AssetsPagePanelController extends GetxController {
},
);
},
child: const Text("Перенеите файл сюда")
child: const Text("Перенесите файл сюда")
.paddingAll(8)
.fittedBox()
.constrained(height: 200, width: 200),
@ -253,7 +253,7 @@ class AssetsPagePanelController extends GetxController {
() => Wrap(
children: tags
.where((p0) => p0.isNotEmpty)
.map((tag) => Chip(label: Text(tag)))
.map((tag) => Chip(label: Text(tag)).paddingAll(2))
.toList(growable: false),
).paddingAll(8).card(color: Colors.blueGrey.shade200).expanded(),
),