remove platform specific padding

This commit is contained in:
Neeraj Gupta 2022-07-07 16:10:11 +05:30
parent e0cd9e0233
commit 40fc17e5ca
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -87,10 +87,10 @@ class GrantPermissionsWidget extends StatelessWidget {
],
),
width: double.infinity,
padding: EdgeInsets.only(
padding: const EdgeInsets.only(
left: 20,
right: 20,
bottom: Platform.isIOS ? 40 : 16,
bottom: 16,
),
child: OutlinedButton(
child: const Text("Grant permission"),