Adjust padding on locale btn

This commit is contained in:
Shawn 2022-10-27 10:22:43 -06:00
parent 90bf9df397
commit d0db7caa38

View File

@ -11,9 +11,6 @@ class LocaleSwitcher extends StatelessWidget with GetItMixin {
await settingsLogic.changeLocale(newLocale);
}
return AppBtn.from(
padding: EdgeInsets.symmetric(vertical: $styles.insets.sm, horizontal: $styles.insets.sm),
text: $strings.localeSwapButton,
onPressed: handleSwapLocale);
return AppBtn.from(text: $strings.localeSwapButton, onPressed: handleSwapLocale);
}
}