Как сделать BlockProvider узнаваемым в моем проекте? - PullRequest
0 голосов
/ 07 июля 2019

Итак, я недавно опробовал шаблон BLOCK, и после импорта пакета block_pattern в мой yaml-файл pubsec, как этот

dependencies:
  flutter:
    sdk: flutter

  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^0.1.2
  bloc_pattern: ^2.2.2+3
  rxdart:

Теперь я установил класс с именем CartListBloc как расширениеBlockBase

class CartListBloc extends BlocBase {
  CartListBloc();
  //etc...

Когда я пытаюсь поместить BlockProvider в основной класс, он не распознается IDE, несмотря на корректный импорт.

import 'package:bloc_pattern/bloc_pattern.dart';
import 'bloc/cartListBloc.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return BlockProvider( // here it doesn't recognize BlockProvider
      blocs: [

      ],
      child:
    );
  }
}



1 Ответ

0 голосов
/ 08 июля 2019

Вы должны избавиться от k в BlocProvider

import 'package:bloc_pattern/bloc_pattern.dart';
import 'bloc/cartListBloc.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return BlocProvider( // remove the K
      blocs: [

      ],
      child:
    );
  }
}
...