tool_arch 0.0.13
tool_arch: ^0.0.13 copied to clipboard
Contains common arch components
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add tool_arch
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
tool_arch: ^0.0.13
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:tool_arch/arch.dart';
import 'package:tool_arch/core/bloc/base_bloc.dart';
import 'package:tool_arch/core/bloc/base_feature_bloc.dart';
import 'package:tool_arch/core/bloc/bloc_initializer_handler.dart';
import 'package:tool_arch/core/bloc/delegate/base_bloc_delegate.dart';
import 'package:tool_arch/core/bloc/subscriptions_handler.dart';
import 'package:tool_arch/core/data/providers/widgets_binding_provider.dart';
import 'package:tool_arch/core/environment/build_environment.dart';
import 'package:tool_arch/core/environment/build_flavors.dart';
import 'package:tool_arch/core/environment/build_params_mappers.dart';
import 'package:tool_arch/core/errors/error_contract.dart';
import 'package:tool_arch/core/errors/error_handler.dart';
import 'package:tool_arch/core/errors/errors.dart';
import 'package:tool_arch/core/errors/errors_manager.dart';
import 'package:tool_arch/core/runner/app_runner.dart';
import 'package:tool_arch/data/exceptions/ignore_exception.dart';
import 'package:tool_arch/data/providers/crashreports_provider.dart';
import 'package:tool_arch/data/providers/firebase_crashreports_provider.dart';
import 'package:tool_arch/data/providers/web_crashreports_provider.dart';
import 'package:tool_arch/declaration.dart';
import 'package:tool_arch/declaration/di_component.dart';
import 'package:tool_arch/declaration/errors_initializer.dart';
import 'package:tool_arch/declaration/initializer.dart';
import 'package:tool_arch/declaration/lifecycle_initializer.dart';
import 'package:tool_arch/declaration/logger_initializer.dart';
import 'package:tool_arch/declaration/tool_arch_di.dart';
import 'package:tool_arch/env.dart';
import 'package:tool_arch/logger.dart';
import 'package:tool_arch/logger/outputs/show_error_output.dart';
import 'package:tool_arch/presentation/text/text_wrapper.dart';