diff --git a/lib/feature/wallet/token_wallet_send/bloc/token_wallet_send_bloc.dart b/lib/feature/wallet/token_wallet_send/bloc/token_wallet_send_bloc.dart index 1fb9f44ae..ee7abeae5 100644 --- a/lib/feature/wallet/token_wallet_send/bloc/token_wallet_send_bloc.dart +++ b/lib/feature/wallet/token_wallet_send/bloc/token_wallet_send_bloc.dart @@ -211,10 +211,12 @@ class TokenWalletSendBloc destination: repackedDestination, ); - messengerService.show(Message.successful( - context: context, - message: resultMessage, - )); + messengerService.show( + Message.successful( + context: context, + message: resultMessage, + ), + ); if (!isClosed) { add(TokenWalletSendEvent.completeSend(transaction)); } diff --git a/lib/feature/wallet/ton_confirm_transaction/bloc/ton_confirm_transaction_bloc.dart b/lib/feature/wallet/ton_confirm_transaction/bloc/ton_confirm_transaction_bloc.dart index 550724fbc..73c9b45fd 100644 --- a/lib/feature/wallet/ton_confirm_transaction/bloc/ton_confirm_transaction_bloc.dart +++ b/lib/feature/wallet/ton_confirm_transaction/bloc/ton_confirm_transaction_bloc.dart @@ -1,3 +1,5 @@ +// ignore_for_file: use_build_context_synchronously + import 'package:app/app/service/service.dart'; import 'package:app/di/di.dart'; import 'package:app/generated/generated.dart'; diff --git a/lib/feature/wallet/ton_wallet_send/bloc/ton_wallet_send_bloc.dart b/lib/feature/wallet/ton_wallet_send/bloc/ton_wallet_send_bloc.dart index c13f2ccb3..c20aef42c 100644 --- a/lib/feature/wallet/ton_wallet_send/bloc/ton_wallet_send_bloc.dart +++ b/lib/feature/wallet/ton_wallet_send/bloc/ton_wallet_send_bloc.dart @@ -1,3 +1,5 @@ +// ignore_for_file: use_build_context_synchronously + import 'package:app/app/service/service.dart'; import 'package:app/generated/generated.dart'; import 'package:app/utils/constants.dart'; diff --git a/lib/feature/wallet/wallet_deploy/bloc/wallet_deploy_bloc.dart b/lib/feature/wallet/wallet_deploy/bloc/wallet_deploy_bloc.dart index 4880a7256..26815c108 100644 --- a/lib/feature/wallet/wallet_deploy/bloc/wallet_deploy_bloc.dart +++ b/lib/feature/wallet/wallet_deploy/bloc/wallet_deploy_bloc.dart @@ -1,3 +1,5 @@ +// ignore_for_file: use_build_context_synchronously + import 'package:app/app/service/service.dart'; import 'package:app/di/di.dart'; import 'package:app/generated/generated.dart'; diff --git a/lib/feature/wallet/wallet_prepare_transfer/wallet_prepare_transfer_page/wallet_prepare_transfer_page_wm.dart b/lib/feature/wallet/wallet_prepare_transfer/wallet_prepare_transfer_page/wallet_prepare_transfer_page_wm.dart index 2f325a6c3..51ad26869 100644 --- a/lib/feature/wallet/wallet_prepare_transfer/wallet_prepare_transfer_page/wallet_prepare_transfer_page_wm.dart +++ b/lib/feature/wallet/wallet_prepare_transfer/wallet_prepare_transfer_page/wallet_prepare_transfer_page_wm.dart @@ -1,3 +1,5 @@ +// ignore_for_file: use_build_context_synchronously + import 'dart:async'; import 'package:app/app/router/app_route.dart'; diff --git a/lib/feature/wallet/widgets/account_asset_tab/select_new_asset/cubit/select_new_asset_cubit.dart b/lib/feature/wallet/widgets/account_asset_tab/select_new_asset/cubit/select_new_asset_cubit.dart index a55f2914f..6f09e53f0 100644 --- a/lib/feature/wallet/widgets/account_asset_tab/select_new_asset/cubit/select_new_asset_cubit.dart +++ b/lib/feature/wallet/widgets/account_asset_tab/select_new_asset/cubit/select_new_asset_cubit.dart @@ -1,3 +1,5 @@ +// ignore_for_file: use_build_context_synchronously + import 'dart:async'; import 'package:app/app/service/service.dart'; diff --git a/lib/feature/wallet/widgets/account_asset_tab/select_new_asset/widgets/select_new_asset_custom_enter.dart b/lib/feature/wallet/widgets/account_asset_tab/select_new_asset/widgets/select_new_asset_custom_enter.dart index 38d314791..3bb9eac9f 100644 --- a/lib/feature/wallet/widgets/account_asset_tab/select_new_asset/widgets/select_new_asset_custom_enter.dart +++ b/lib/feature/wallet/widgets/account_asset_tab/select_new_asset/widgets/select_new_asset_custom_enter.dart @@ -1,3 +1,5 @@ +// ignore_for_file: use_build_context_synchronously + import 'package:app/app/service/service.dart'; import 'package:app/data/models/models.dart'; import 'package:app/di/di.dart'; diff --git a/lib/feature/wallet/widgets/wallet_account_actions/wallet_account_actions.dart b/lib/feature/wallet/widgets/wallet_account_actions/wallet_account_actions.dart index 6ae0a156e..79f6e5481 100644 --- a/lib/feature/wallet/widgets/wallet_account_actions/wallet_account_actions.dart +++ b/lib/feature/wallet/widgets/wallet_account_actions/wallet_account_actions.dart @@ -1,3 +1,5 @@ +// ignore_for_file: unused_element, lines_longer_than_80_chars + import 'package:app/app/router/router.dart'; import 'package:app/app/service/service.dart'; import 'package:app/di/di.dart'; diff --git a/lib/utils/mixins/connection_mixin.dart b/lib/utils/mixins/connection_mixin.dart index 9ffe1383e..7b6dbfd5e 100644 --- a/lib/utils/mixins/connection_mixin.dart +++ b/lib/utils/mixins/connection_mixin.dart @@ -1,3 +1,5 @@ +// ignore_for_file: use_build_context_synchronously + import 'package:app/app/service/messenger/service/messenger_service.dart'; import 'package:app/app/service/network_connection/network_connection_service.dart'; import 'package:flutter/cupertino.dart';