颤振错误:找不到正确的ScopedModel

问题描述 投票:4回答:1

我试图在我的flutter项目中创建一个scopedmodel,我似乎无法弄清楚为什么我得到错误。这个scopedmodel实现有什么问题?我有一个带有底部导航器的主页。在配置文件选项卡中,我在树中深处的小部件中获取了我需要的关注者列表,因此我尝试使用scopedmodel。

型号代码是

class RelationshipsModel extends Model {
        List<Relationship> relations;
        RelationshipsModel(this.relations);
        void add(String name) {
            relations.add(new Relationship("", "", name, name));
            notifyListeners();
      }
    }

创建scopedmodel的配置文件页面如下所示。在这里,我从状态中的Firebase获取关注者列表,并使用它来为scopedmodel创建模型。

 class ProfileWidget extends StatefulWidget {
      @override
      _ProfileWidgetState createState() => _ProfileWidgetState();
    }

class _ProfileWidgetState extends State<ProfileWidget> {
@override
  initState() {
    super.initState();
    getCurrentUserDetails();
  }
getCurrentUserDetails() async {
_name = await CacheService.getCurrentUser();
var following = await service.getFollowingList(_name);
setState(() {
      this._following = following;
    });
  }

 @override
  Widget build(BuildContext context) {
    if (this._name == null) {
      return new Container(
        child: const CupertinoActivityIndicator(),
      );
    }

return  ScopedModel<RelationshipsModel>(
        model: RelationshipsModel(this._following),
        child: Scaffold(
       //more stuff

         background: new Stack(children: <Widget>[
                  new CarouselWidget(),
                  new Align(
                    alignment: FractionalOffset.topCenter,
                    heightFactor: 6.0,
                    child: new Column(
                      mainAxisAlignment: MainAxisAlignment.center,
                      children: <Widget>[
                        //Here I am creating the a widget that shows the list of followers and following
                        new FollowerInfoWidget(followers: this._followers,
                            following: this._following),
                      ],
                    ),
                  ),
                ])),


     )
   );
  }
}

FollowerInfoWidget位于其下方,根据列表中单击的用户调用ProfileWidget或UserWidget

 class _FollowerState extends State<FollowerWidget> {

  Widget buildListTile(BuildContext context, Relationship item) {
    return new MergeSemantics(
      child: new ListTile(

        title: new Text(item.followerId),
        onTap: () async {
          if (item.followerId == await CacheService.getCurrentUser()) {
            Navigator.push(
              context,
              MaterialPageRoute(builder: (context) => ProfileWidget()),
            );
          }
          else {
            Navigator.push(
              context,
              MaterialPageRoute(builder: (context) =>
                  UserWidget(name: item.followerId)),
            );
          }
        },
        trailing: new Icon(Icons.info, color: Theme.of(context).disabledColor),
      ),
    );
  }

FollowUnFollowWidget按钮是UserWidget的一部分

    class UserWidget extends StatefulWidget {
  UserWidget(
      {Key key})
      : super(key: key);
  @override
  _UserWidgetState createState() => _UserWidgetState();
}

class _UserWidgetState extends State<UserWidget> {
@override
  Widget build(BuildContext context) {
return Scaffold(
      body: DefaultTabController(
//more stuff
 new FollowerInfoWidget(
                              followers: this._followers,
                              following: this._following,
                            ),
                            new FollowUnFollowWidget ()

并且具有ScopedModelDescendant的小部件位于下方

class FollowUnFollowWidget extends StatelessWidget {  
  @override
  Widget build(BuildContext context) {
    return ScopedModelDescendant<RelationshipsModel>(
        builder: (context, child, model) =>
            FloatingActionButton(
            onPressed: () {}
           //more stuff
       )
    );
  }
}
dart flutter state flutter-layout scoped-model
1个回答
4
投票

这里的代码将推送一个ProfileWidgetUserWidget的视图

onTap: () async {
      if (item.followerId == await CacheService.getCurrentUser()) {
        Navigator.push(
          context,
          MaterialPageRoute(builder: (context) => ProfileWidget()),
        );
      }
      else {
        Navigator.push(
          context,
          MaterialPageRoute(builder: (context) =>
              UserWidget(name: item.followerId)),
        );
      }
    },

由于UserWidgetFollowUnFollowWidget,使用ScopedModelDescendant是行不通的,因为它上面没有ScopedModel。这个ScopedModel只用ProfileWidget定义

看起来你需要将ScopedModel添加到UserWidget的构建方法的顶部或作为buildListTile的一部分


0
投票

如果有人有同样的错误,错误也可能是上下文。在某些情况下,它找不到Scoped模型,因为上下文不是您启动主ScopedModel的位置

© www.soinside.com 2019 - 2024. All rights reserved.