selfprivacy.org.app/lib/ui/components/one_page/one_page.dart

49 lines
1.5 KiB
Dart
Raw Normal View History

2021-03-26 15:38:39 +02:00
import 'package:flutter/material.dart';
import 'package:selfprivacy/ui/components/brand_divider/brand_divider.dart';
import 'package:selfprivacy/ui/components/brand_text/brand_text.dart';
import 'package:easy_localization/easy_localization.dart';
2021-05-26 00:53:54 +03:00
import 'package:selfprivacy/ui/components/pre_styled_buttons/pre_styled_buttons.dart';
2021-03-26 15:38:39 +02:00
class OnePage extends StatelessWidget {
const OnePage({
required this.title,
required this.child,
final super.key,
2022-06-05 22:36:32 +03:00
});
2021-03-26 15:38:39 +02:00
final String title;
final Widget child;
@override
2022-06-05 22:36:32 +03:00
Widget build(final BuildContext context) => Scaffold(
appBar: PreferredSize(
preferredSize: const Size.fromHeight(52),
child: Column(
children: [
Container(
height: 51,
alignment: Alignment.center,
padding: const EdgeInsets.symmetric(horizontal: 15),
child: BrandText.h4('basis.details'.tr()),
),
const BrandDivider(),
],
),
2021-05-26 00:53:54 +03:00
),
body: child,
bottomNavigationBar: SafeArea(
2021-05-26 00:53:54 +03:00
child: Container(
decoration: BoxDecoration(boxShadow: kElevationToShadow[3]),
height: kBottomNavigationBarHeight,
child: Container(
color: Theme.of(context).scaffoldBackgroundColor,
alignment: Alignment.center,
child: PreStyledButtons.close(
onPress: () => Navigator.of(context).pop(),
),
),
2021-03-26 15:38:39 +02:00
),
),
);
2021-03-26 15:38:39 +02:00
}