mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-27 11:16:45 +00:00
Add padding to About page
This commit is contained in:
parent
6014e385bc
commit
a698d3e7b2
|
@ -1,4 +1,5 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:selfprivacy/config/brand_theme.dart';
|
||||
import 'package:selfprivacy/ui/components/brand_header/brand_header.dart';
|
||||
import 'package:easy_localization/easy_localization.dart';
|
||||
import 'package:selfprivacy/ui/components/brand_md/brand_md.dart';
|
||||
|
@ -16,9 +17,14 @@ class AboutPage extends StatelessWidget {
|
|||
hasBackButton: true,
|
||||
),
|
||||
),
|
||||
body: const BrandMarkdown(
|
||||
body: ListView(
|
||||
padding: paddingH15V0,
|
||||
children: const [
|
||||
BrandMarkdown(
|
||||
fileName: 'about',
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue