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