Add padding

This commit is contained in:
Hillel Coren 2024-01-11 13:19:31 +02:00
parent 79224c6d1a
commit f8198033bb
1 changed files with 4 additions and 1 deletions

View File

@ -557,7 +557,10 @@ class _EntityNumberSettingsState extends State<EntityNumberSettings> {
padding:
const EdgeInsets.only(left: 16, top: 20, right: 16, bottom: 8),
child: OutlinedButton(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 10),
child: Text(localization.viewDateFormats.toUpperCase()),
),
onPressed: () => launchUrl(
Uri.parse('https://www.php.net/manual/en/datetime.format.php')),
),