import 'package:flutter/material.dart'; import 'package:selfprivacy/config/brand_colors.dart'; import 'package:selfprivacy/config/brand_theme.dart'; import 'package:selfprivacy/logic/cubit/app_settings/app_settings_cubit.dart'; import 'package:selfprivacy/logic/cubit/app_config/app_config_cubit.dart'; import 'package:selfprivacy/ui/components/action_button/action_button.dart'; import 'package:selfprivacy/ui/components/brand_alert/brand_alert.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_switch/brand_switch.dart'; import 'package:selfprivacy/ui/components/brand_text/brand_text.dart'; import 'package:selfprivacy/utils/named_font_weight.dart'; import 'package:easy_localization/easy_localization.dart'; class AppSettingsPage extends StatefulWidget { const AppSettingsPage({Key? key}) : super(key: key); @override _AppSettingsPageState createState() => _AppSettingsPageState(); } class _AppSettingsPageState extends State { @override Widget build(BuildContext context) { var isDarkModeOn = context.watch().state.isDarkModeOn; return SafeArea( child: Builder(builder: (context) { return Scaffold( appBar: PreferredSize( child: BrandHeader( title: 'more.settings.title'.tr(), hasBackButton: true), preferredSize: Size.fromHeight(52), ), body: ListView( padding: paddingH15V0, children: [ BrandDivider(), Container( padding: EdgeInsets.only(top: 20, bottom: 5), decoration: BoxDecoration( border: Border( bottom: BorderSide(width: 1, color: BrandColors.dividerColor), )), child: Row( crossAxisAlignment: CrossAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Flexible( child: _TextColumn( title: 'more.settings.1'.tr(), value: 'more.settings.2'.tr(), ), ), SizedBox(width: 5), BrandSwitch( value: Theme.of(context).brightness == Brightness.dark, onChanged: (value) => context .read() .updateDarkMode(isDarkModeOn: !isDarkModeOn), ), ], ), ), Container( padding: EdgeInsets.only(top: 20, bottom: 5), decoration: BoxDecoration( border: Border( bottom: BorderSide(width: 1, color: BrandColors.dividerColor), )), child: Row( crossAxisAlignment: CrossAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Flexible( child: _TextColumn( title: 'more.settings.3'.tr(), value: 'more.settings.4'.tr(), ), ), SizedBox(width: 5), ElevatedButton( style: ElevatedButton.styleFrom( primary: BrandColors.red1, ), child: Text( 'basis.reset'.tr(), style: TextStyle( color: BrandColors.white, fontWeight: NamedFontWeight.demiBold, ), ), onPressed: () { showDialog( context: context, builder: (_) { return BrandAlert( title: 'modals.3'.tr(), contentText: 'modals.4'.tr(), acitons: [ ActionButton( text: 'modals.5'.tr(), isRed: true, onPressed: () { context .read() .clearAppConfig(); Navigator.of(context).pop(); }), ActionButton( text: 'basis.cancel'.tr(), ), ], ); }, ); }, ), ], ), ), // deleteServer(context) ], ), ); }), ); } Widget deleteServer(BuildContext context) { // todo: need to check return Container( padding: EdgeInsets.only(top: 20, bottom: 5), decoration: BoxDecoration( border: Border( bottom: BorderSide(width: 1, color: BrandColors.dividerColor), )), child: Row( crossAxisAlignment: CrossAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Flexible( child: _TextColumn( title: 'more.settings.5'.tr(), value: 'more.settings.6'.tr(), ), ), SizedBox(width: 5), ElevatedButton( style: ElevatedButton.styleFrom( primary: BrandColors.red1, ), child: Text( 'basis.delete'.tr(), style: TextStyle( color: BrandColors.white, fontWeight: NamedFontWeight.demiBold, ), ), onPressed: () { showDialog( context: context, builder: (_) { return BrandAlert( title: 'modals.3'.tr(), contentText: 'modals.6'.tr(), acitons: [ ActionButton( text: 'modals.7'.tr(), isRed: true, onPressed: () async { await context.read().serverDelete(); Navigator.of(context).pop(); }), ActionButton( text: 'basis.cancel'.tr(), ), ], ); }, ); }, ), ], ), ); } } class _TextColumn extends StatelessWidget { const _TextColumn({ Key? key, required this.title, required this.value, this.hasWarning = false, }) : super(key: key); final String title; final String value; final bool hasWarning; @override Widget build(BuildContext context) { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ BrandText.body1( title, style: TextStyle(color: hasWarning ? BrandColors.warning : null), ), SizedBox(height: 5), BrandText.body1(value, style: TextStyle( fontSize: 13, height: 1.53, color: BrandColors.gray1, ).merge(TextStyle(color: hasWarning ? BrandColors.warning : null))), ], ); } }