/* * This file is part of Stack Wallet. * * Copyright (c) 2023 Cypher Stack * All Rights Reserved. * The code is distributed under GPLv3 license, see LICENSE file for details. * Generated by Cypher Stack on 2023-05-26 * */ import 'package:flutter/material.dart'; import 'package:flutter_native_splash/cli_commands.dart'; import 'package:stackwallet/themes/stack_colors.dart'; import 'package:stackwallet/utilities/constants.dart'; import 'package:stackwallet/utilities/text_styles.dart'; import 'package:stackwallet/utilities/util.dart'; import 'package:stackwallet/widgets/background.dart'; import 'package:stackwallet/widgets/conditional_parent.dart'; import 'package:stackwallet/widgets/custom_buttons/app_bar_icon_button.dart'; import 'package:stackwallet/widgets/desktop/desktop_dialog_close_button.dart'; import 'package:stackwallet/widgets/desktop/primary_button.dart'; import 'package:stackwallet/widgets/desktop/secondary_button.dart'; import 'package:stackwallet/widgets/icon_widgets/x_icon.dart'; import 'package:stackwallet/widgets/stack_text_field.dart'; import 'package:stackwallet/widgets/textfield_icon_button.dart'; class SingleFieldEditView extends StatefulWidget { const SingleFieldEditView({ Key? key, required this.initialValue, required this.label, }) : super(key: key); static const String routeName = "/singleFieldEdit"; final String initialValue; final String label; @override State createState() => _SingleFieldEditViewState(); } class _SingleFieldEditViewState extends State { late final TextEditingController _textController; final _textFocusNode = FocusNode(); late final bool isDesktop; @override void initState() { isDesktop = Util.isDesktop; _textController = TextEditingController()..text = widget.initialValue; super.initState(); } @override void dispose() { _textController.dispose(); _textFocusNode.dispose(); super.dispose(); } @override Widget build(BuildContext context) { return ConditionalParent( condition: !isDesktop, builder: (child) => Background( child: Scaffold( backgroundColor: Theme.of(context).extension()!.background, appBar: AppBar( backgroundColor: Theme.of(context).extension()!.background, leading: AppBarBackButton( onPressed: () async { if (FocusScope.of(context).hasFocus) { FocusScope.of(context).unfocus(); await Future.delayed(const Duration(milliseconds: 75)); } if (mounted) { Navigator.of(context).pop(); } }, ), title: Text( "Edit ${widget.label}", style: STextStyles.navBarTitle(context), ), ), body: Padding( padding: const EdgeInsets.symmetric(horizontal: 16), child: LayoutBuilder( builder: (context, constraints) { return SingleChildScrollView( child: ConstrainedBox( constraints: BoxConstraints( minHeight: constraints.maxHeight, ), child: IntrinsicHeight( child: child, ), ), ); }, ), ), ), ), child: Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: [ if (!isDesktop) const SizedBox( height: 10, ), if (isDesktop) Padding( padding: const EdgeInsets.only( left: 32, bottom: 12, ), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( "Edit ${widget.label}", style: STextStyles.desktopH3(context), ), const DesktopDialogCloseButton(), ], ), ), Padding( padding: isDesktop ? const EdgeInsets.symmetric( horizontal: 32, ) : const EdgeInsets.all(0), child: ClipRRect( borderRadius: BorderRadius.circular( Constants.size.circularBorderRadius, ), child: TextField( autocorrect: Util.isDesktop ? false : true, enableSuggestions: Util.isDesktop ? false : true, controller: _textController, style: isDesktop ? STextStyles.desktopTextExtraSmall(context).copyWith( color: Theme.of(context) .extension()! .textFieldActiveText, height: 1.8, ) : STextStyles.field(context), focusNode: _textFocusNode, decoration: standardInputDecoration( widget.label.capitalize(), _textFocusNode, context, desktopMed: isDesktop, ).copyWith( contentPadding: isDesktop ? const EdgeInsets.only( left: 16, top: 11, bottom: 12, right: 5, ) : null, suffixIcon: _textController.text.isNotEmpty ? Padding( padding: const EdgeInsets.only(right: 0), child: UnconstrainedBox( child: Row( children: [ TextFieldIconButton( child: const XIcon(), onTap: () async { setState(() { _textController.text = ""; }); }, ), ], ), ), ) : null, ), ), ), ), // if (!isDesktop) const Spacer(), ConditionalParent( condition: isDesktop, builder: (child) => Padding( padding: const EdgeInsets.all(32), child: Row( children: [ Expanded( child: SecondaryButton( label: "Cancel", buttonHeight: ButtonHeight.l, onPressed: () { if (mounted) { Navigator.of(context).pop(); } }, ), ), const SizedBox( width: 16, ), Expanded( child: child, ), ], ), ), child: PrimaryButton( label: "Save", buttonHeight: isDesktop ? ButtonHeight.l : null, onPressed: () { if (mounted) { Navigator.of(context).pop(_textController.text); } }, ), ), if (!isDesktop) const SizedBox( height: 16, ), ], ), ); } }