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

25 lines
720 B
Dart
Raw Normal View History

2020-12-02 09:16:23 +00:00
import 'package:flutter/material.dart';
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 AboutPage extends StatelessWidget {
2021-03-15 15:39:44 +00:00
const AboutPage({Key? key}) : super(key: key);
2020-12-02 09:16:23 +00:00
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
2020-12-03 16:52:53 +00:00
appBar: PreferredSize(
2022-05-24 18:55:39 +00:00
preferredSize: const Size.fromHeight(52),
2021-03-18 07:26:54 +00:00
child: BrandHeader(
title: 'more.about_project'.tr(), hasBackButton: true),
2020-12-03 16:52:53 +00:00
),
2022-05-24 18:55:39 +00:00
body: const BrandMarkdown(
fileName: 'about',
2020-12-02 09:16:23 +00:00
),
),
);
}
}