mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-02 23:17:17 +00:00
51 lines
2 KiB
Dart
51 lines
2 KiB
Dart
import 'package:flutter/material.dart';
|
||
import 'package:selfprivacy/config/brand_theme.dart';
|
||
import 'package:selfprivacy/ui/components/brand_divider/brand_divider.dart';
|
||
import 'package:selfprivacy/ui/components/brand_header/brand_header.dart';
|
||
import 'package:selfprivacy/ui/components/brand_text/brand_text.dart';
|
||
|
||
class AboutPage extends StatelessWidget {
|
||
const AboutPage({Key key}) : super(key: key);
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
return SafeArea(
|
||
child: Scaffold(
|
||
appBar: PreferredSize(
|
||
child: BrandHeader(title: 'О проекте', hasBackButton: true),
|
||
preferredSize: Size.fromHeight(52),
|
||
),
|
||
body: ListView(
|
||
padding: brandPagePadding2,
|
||
children: [
|
||
BrandDivider(),
|
||
SizedBox(height: 20),
|
||
BrandText.h3('О проекте'),
|
||
SizedBox(height: 10),
|
||
BrandText.body1(
|
||
'Всё больше организаций хотят владеть нашими данными'),
|
||
SizedBox(height: 10),
|
||
BrandText.body1(
|
||
'А мы сами хотим распоряжаться своими данными на своем сервере.'),
|
||
SizedBox(height: 20),
|
||
BrandDivider(),
|
||
SizedBox(height: 10),
|
||
BrandText.h3('Миссия проекта'),
|
||
SizedBox(height: 10),
|
||
BrandText.body1(
|
||
'Цифровая независимость и приватность доступная каждому'),
|
||
SizedBox(height: 20),
|
||
BrandDivider(),
|
||
SizedBox(height: 10),
|
||
BrandText.h3('Цель'),
|
||
SizedBox(height: 10),
|
||
BrandText.body1(
|
||
'Развивать программу, которая позволит каждому создавать приватные сервисы для себя и своих близких'),
|
||
SizedBox(height: 10),
|
||
],
|
||
),
|
||
),
|
||
);
|
||
}
|
||
}
|