BlocProvider.of() 使用不包含 MyBloc 类型的 Bloc/Cubit 的上下文调用

BlocProvider.of() called with a context that does not contain a Bloc/Cubit of type MyBloc

我尝试使用 BlocProvider 添加 MyBloc,但遇到了上下文问题。错误如下:

正在调试模式下在 sdk gphone x86 arm 上启动 lib\main.dart... lib\main.飞镖:1 √ 内置 build\app\outputs\flutter-apk\app-debug.apk。 在 ws://127.0.0.1:64346/zfCDazZFoQI=/ws

连接到 VM 服务
════════ Exception caught by gesture ═══════════════════════════════════════════
The following assertion was thrown while handling a gesture:
        BlocProvider.of() called with a context that does not contain a Bloc/Cubit of type MyBloc.

        No ancestor could be found starting from the context that was passed to BlocProvider.of<MyBloc>().

        This can happen if the context you used comes from a widget above the BlocProvider.

        The context used was: BlocAddPage(state: _BlocAddPageState#43fc1)

When the exception was thrown, this was the stack
#0      BlocProvider.of
package:flutter_bloc/src/bloc_provider.dart:121
#1      _BlocAddPageState.build.<anonymous closure>
package:example/…/examples/bloc_add.dart:53
#2      _InkResponseState._handleTap
package:flutter/…/material/ink_well.dart:993
#3      _InkResponseState.build.<anonymous closure>
package:flutter/…/material/ink_well.dart:1111
#4      GestureRecognizer.invokeCallback

我关注UIclass。

class BlocAddPage extends StatefulWidget {
      BlocAddPage({Key key}) : super(key: key);
      static const routeName = '/addBloc';
    
      @override
      _BlocAddPageState createState() => _BlocAddPageState();
    }
    
    class _BlocAddPageState extends State<BlocAddPage> {
      final Repository repository = Repository();
     
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(
            title: Text(
              'Add',
            ),
          ),
          body: BlocProvider<MyBloc>(
            create: (context) => MyBloc(
                repository: context.read<Repository>(),
    
            child: ElevatedButton(
                onPressed: () {
                  BlocProvider.of<MyBloc>(context)
                      .add(AddEvent());
                },
                child: const Text('Submit'),
                style: ElevatedButton.styleFrom(
                  padding: EdgeInsets.all(15),
                  shape: const RoundedRectangleBorder(
                    borderRadius: BorderRadius.all(
                      Radius.circular(40),
                    ),
                  ),
                )),

问题是你的语境。用 Builder.

包裹

原因:当调用 BlocProvider.of<MyBloc>(context) 时,of 希望您的 context 位于提供者 下方 的某处。但在您的情况下,上下文是 _BlocAddPageState 的上下文,它是提供者的祖先。于是我找了个builder来解决。

class BlocAddPage extends StatefulWidget {
      BlocAddPage({Key key}) : super(key: key);
      static const routeName = '/addBloc';
    
      @override
      _BlocAddPageState createState() => _BlocAddPageState();
    }
    
    class _BlocAddPageState extends State<BlocAddPage> {
      final Repository repository = Repository();
     
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(
            title: Text(
              'Add',
            ),
          ),
          body: BlocProvider<MyBloc>(
            create: (context) => MyBloc(
                repository: context.read<Repository>(),
    
            child: Builder( // this!!!
              builder: (context) => ElevatedButton(
                onPressed: () {
                  BlocProvider.of<MyBloc>(context)
                      .add(AddEvent());
                },
                child: const Text('Submit'),
                style: ElevatedButton.styleFrom(
                  padding: EdgeInsets.all(15),
                  shape: const RoundedRectangleBorder(
                    borderRadius: BorderRadius.all(
                      Radius.circular(40),
                    ),
                  ),
                ))),