feat: Improve a bit the padding on about
This commit is contained in:
@@ -48,7 +48,11 @@ class AboutPage extends StatelessWidget {
|
|||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 4),
|
padding: const EdgeInsets.only(
|
||||||
|
top: 8,
|
||||||
|
left: 4,
|
||||||
|
right: 4,
|
||||||
|
),
|
||||||
child: ElevatedButton(
|
child: ElevatedButton(
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
await launchUrl(
|
await launchUrl(
|
||||||
@@ -62,7 +66,11 @@ class AboutPage extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 4),
|
padding: const EdgeInsets.only(
|
||||||
|
top: 8,
|
||||||
|
left: 4,
|
||||||
|
right: 4,
|
||||||
|
),
|
||||||
child: ElevatedButton(
|
child: ElevatedButton(
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
final licenseText = await rootBundle.loadString(
|
final licenseText = await rootBundle.loadString(
|
||||||
|
|||||||
Reference in New Issue
Block a user