Correct button styling
This commit is contained in:
parent
0f51e35cbd
commit
8cefc3c1bc
|
|
@ -351,7 +351,10 @@ class _EntityListState extends State<EntityList> {
|
||||||
if (isDesktop(context)) ...[
|
if (isDesktop(context)) ...[
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 8),
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
||||||
child: Text('($countSelected)'),
|
child: Text(isList
|
||||||
|
? '($countSelected)'
|
||||||
|
: localization.countSelected
|
||||||
|
.replaceFirst(':count', '$countSelected')),
|
||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Align(
|
child: Align(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue