@@ -7,15 +7,14 @@ import 'package:bb_mobile/core/widgets/buttons/button.dart';
77import 'package:bb_mobile/core/widgets/cards/info_card.dart' ;
88import 'package:bb_mobile/core/widgets/dropdown/bb_dropdown.dart' ;
99import 'package:bb_mobile/core/widgets/inputs/bb_keyboard_actions.dart' ;
10- import 'package:bb_mobile/core/widgets/inputs/text_input.dart' ;
1110import 'package:bb_mobile/core/widgets/switch/bb_switch.dart' ;
1211import 'package:bb_mobile/core/widgets/text/text.dart' ;
1312import 'package:bb_mobile/features/autoswap/presentation/autoswap_failure_l10n.dart' ;
1413import 'package:bb_mobile/features/autoswap/presentation/autoswap_settings_cubit.dart' ;
1514import 'package:bb_mobile/locator.dart' ;
1615import 'package:flutter/material.dart' ;
1716import 'package:flutter_bloc/flutter_bloc.dart' ;
18- import 'package:bull_ui/bull_ui.dart' show Gap;
17+ import 'package:bull_ui/bull_ui.dart' show BullInputText, Gap;
1918
2019class AutoSwapSettingsBottomSheet extends StatelessWidget {
2120 const AutoSwapSettingsBottomSheet ({super .key});
@@ -265,7 +264,7 @@ class _AmountThresholdField extends StatelessWidget {
265264 Row (
266265 children: [
267266 Expanded (
268- child: BBInputText (
267+ child: BullInputText (
269268 value: amountThresholdInput ?? '' ,
270269 focusNode: focusNode,
271270 onlyNumbers: true ,
@@ -349,7 +348,7 @@ class _TriggerBalanceField extends StatelessWidget {
349348 Row (
350349 children: [
351350 Expanded (
352- child: BBInputText (
351+ child: BullInputText (
353352 value: triggerBalanceSatsInput ?? '' ,
354353 focusNode: focusNode,
355354 onlyNumbers: true ,
@@ -430,7 +429,7 @@ class _FeeThresholdField extends StatelessWidget {
430429 Row (
431430 children: [
432431 Expanded (
433- child: BBInputText (
432+ child: BullInputText (
434433 value: feeThresholdInput ?? '' ,
435434 focusNode: focusNode,
436435 onlyNumbers: true ,
0 commit comments