project_core_example 1.0.1 copy "project_core_example: ^1.0.1" to clipboard
project_core_example: ^1.0.1 copied to clipboard

discontinued

Exemplo Pacote Core para auxiliar o desenvolvimento de aplicativos em flutter.

Use this package as a library

Depend on it

Run this command:

With Flutter:

 $ flutter pub add project_core_example

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dependencies:
  project_core_example: ^1.0.1

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:project_core_example/app/bloc/CampaignBloc.dart';
import 'package:project_core_example/app/bloc/TransactionBloc.dart';
import 'package:project_core_example/app/model/Campaign.dart';
import 'package:project_core_example/app/model/Transaction.dart';
import 'package:project_core_example/app/provider/graphql/CampaignGqlProvider.dart';
import 'package:project_core_example/app/provider/graphql/query/CampaignQuery.dart';
import 'package:project_core_example/app/provider/rest/TransactionProvider.dart';
import 'package:project_core_example/app/repository/CampaignRepository.dart';
import 'package:project_core_example/app/repository/TransactionRepository.dart';
import 'package:project_core_example/env/env.dart';
import 'package:project_core_example/graphql/GraphQLClientInstance.dart';
import 'package:project_core_example/locale/AppLanguage.dart';
import 'package:project_core_example/locale/AppLocalizations.dart';
import 'package:project_core_example/main.dart';
import 'package:project_core_example/ui/App.dart';
import 'package:project_core_example/ui/page/AppPage.dart';
import 'package:project_core_example/ui/page/BasicPage.dart';
import 'package:project_core_example/ui/page/ExemploBlocGraphqlPadraoPage.dart';
import 'package:project_core_example/ui/page/ExemploBlocGraphqlPage.dart';
import 'package:project_core_example/ui/page/ExemploBlocRestPadraoPage.dart';
import 'package:project_core_example/ui/page/ExemploBlocRestPage.dart';
import 'package:project_core_example/ui/page/Route.dart';
import 'package:project_core_example/ui/util/ValidationUtil.dart';
import 'package:project_core_example/ui/widget/Error.dart';