selfprivacy.org.app/lib/ui/pages/more/about_us.dart

31 lines
921 B
Dart
Raw Normal View History

2020-12-02 09:16:23 +00:00
import 'package:flutter/material.dart';
2022-08-26 03:41:16 +00:00
import 'package:selfprivacy/config/brand_theme.dart';
2020-12-02 09:16:23 +00:00
import 'package:selfprivacy/ui/components/brand_header/brand_header.dart';
2021-03-18 07:26:54 +00:00
import 'package:easy_localization/easy_localization.dart';
import 'package:selfprivacy/ui/components/brand_md/brand_md.dart';
2020-12-02 09:16:23 +00:00
class AboutUsPage extends StatelessWidget {
const AboutUsPage({super.key});
2020-12-02 09:16:23 +00:00
@override
2022-06-05 19:36:32 +00:00
Widget build(final BuildContext context) => SafeArea(
child: Scaffold(
appBar: PreferredSize(
preferredSize: const Size.fromHeight(52),
child: BrandHeader(
title: 'about_us_page.title'.tr(),
hasBackButton: true,
),
),
2022-08-26 03:41:16 +00:00
body: ListView(
padding: paddingH15V0,
children: const [
BrandMarkdown(
fileName: 'about',
),
],
),
2020-12-03 16:52:53 +00:00
),
);
2020-12-02 09:16:23 +00:00
}