Skip to content
Snippets Groups Projects
Commit 51774aca authored by guenoel's avatar guenoel Committed by poka
Browse files

fix layout on settings screen on iOS

parent fd5d20ec
No related branches found
No related tags found
No related merge requests found
Pipeline #18899 waiting for manual action
......@@ -146,9 +146,9 @@ class SettingsScreen extends StatelessWidget {
child: Row(children: [
const SizedBox(width: 10),
SizedBox(
width: 100,
width: 80,
child: Text(
'currencyNode'.tr(args: [currencyName]),
'currencyNode'.tr(args: ['']),
),
),
const Spacer(),
......@@ -159,7 +159,7 @@ class SettingsScreen extends StatelessWidget {
const Icon(Icons.add_card_sharp, size: 0.01),
const Spacer(),
SizedBox(
width: 265,
width: 280,
child: Consumer<SettingsProvider>(builder: (context, set, _) {
return DropdownButtonHideUnderline(
key: keySelectDuniterNodeDropDown,
......@@ -299,7 +299,7 @@ class SettingsScreen extends StatelessWidget {
child: Row(children: [
const SizedBox(width: 10),
const SizedBox(
width: 100,
width: 80,
// child: Text('indexer'.tr()), // why translation does not work??
child: Text('Indexer'),
),
......@@ -307,7 +307,7 @@ class SettingsScreen extends StatelessWidget {
Icon(indexerEndpoint != '' ? Icons.check : Icons.close),
const Spacer(),
SizedBox(
width: 265,
width: 280,
child: Consumer<SettingsProvider>(builder: (context, set, _) {
return DropdownButtonHideUnderline(
child: DropdownButton(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment