diff --git a/lib/pages/add_wallet_views/frost_ms/new/steps/frost_create_step_1b.dart b/lib/pages/add_wallet_views/frost_ms/new/steps/frost_create_step_1b.dart index 3b34d18cc..1cdacf8a4 100644 --- a/lib/pages/add_wallet_views/frost_ms/new/steps/frost_create_step_1b.dart +++ b/lib/pages/add_wallet_views/frost_ms/new/steps/frost_create_step_1b.dart @@ -7,6 +7,7 @@ import 'package:stackwallet/utilities/text_styles.dart'; import 'package:stackwallet/utilities/util.dart'; import 'package:stackwallet/widgets/desktop/primary_button.dart'; import 'package:stackwallet/widgets/frost_step_user_steps.dart'; +import 'package:stackwallet/widgets/rounded_white_container.dart'; import 'package:stackwallet/widgets/stack_dialog.dart'; import 'package:stackwallet/widgets/textfields/frost_step_field.dart'; @@ -66,6 +67,21 @@ class _FrostCreateStep1bState extends ConsumerState { const SizedBox( height: 16, ), + FrostStepField( + controller: configFieldController, + focusNode: configFocusNode, + showQrScanOption: true, + label: "Enter config", + hint: "Enter config", + onChanged: (_) { + setState(() { + _configEmpty = configFieldController.text.isEmpty; + }); + }, + ), + const SizedBox( + height: 16, + ), FrostStepField( controller: myNameFieldController, focusNode: myNameFocusNode, @@ -79,19 +95,20 @@ class _FrostCreateStep1bState extends ConsumerState { }, ), const SizedBox( - height: 16, + height: 6, ), - FrostStepField( - controller: configFieldController, - focusNode: configFocusNode, - showQrScanOption: true, - label: "Enter config", - hint: "Enter config", - onChanged: (_) { - setState(() { - _configEmpty = configFieldController.text.isEmpty; - }); - }, + Row( + children: [ + Expanded( + child: RoundedWhiteContainer( + child: Text( + "Enter your name EXACTLY as the group creator entered it. " + "The names are case-sensitive.", + style: STextStyles.label(context), + ), + ), + ), + ], ), const SizedBox( height: 16,