Giter VIP home page Giter VIP logo

Comments (8)

tomosullivan8 avatar tomosullivan8 commented on June 12, 2024 11

Although you don't need the MainModel it might help if you wanted to add more models in the future? I think the following should work. Try and change the class for mixin and extends to on in the models that aren't Main Model.

Main Model

import 'package:scoped_model/scoped_model.dart';

import './posts.dart';
import './user.dart';

class MainModel extends Model with UserModel, PostsModel {}

Posts Model

import 'package:scoped_model/scoped_model.dart';

import '../models/post.dart';

mixin PostsModel on Model {
  List<Post> _posts = [];

  List<Post> get posts {
    return List.from(_posts);
  }

  void addPost(Post product) {
    _posts.add(product);
  }

  void updatePost(int index, Post product) {
    _posts[index] = product;
  }

  void deletePost(int index) {
    _posts.removeAt(index);
  }
}

User Model

import 'package:scoped_model/scoped_model.dart';

import '../models/user.dart';

mixin UserModel on Model {
  User _authenticatedUser;

  void login(String email, String password) {
    _authenticatedUser = User(id: 'xxxxx', email: email, password: password);
  }
}

from scoped_model.

passsy avatar passsy commented on June 12, 2024 2

I don't get why you need the MainModel at all. Isn't it enough to nest the models in each other?

new ScopedModel<UserModel>(
  model: new UserModel(),
  child: new ScopedModel<PostsModel>(
    model: new PostsModel(),
    child: myApp,
  ),
);

from scoped_model.

Pman143 avatar Pman143 commented on June 12, 2024 2
  1. mixin ProductModel on Model {}
  2. mixin UserModel on Model {}
  3. class MainModel extends Model with UserModel, ProductModel {}

Try out this. It worked for me.

from scoped_model.

akhilasuraj avatar akhilasuraj commented on June 12, 2024 1

https://medium.com/@amandeepkochhar/flutter-dart-the-class-cant-be-used-as-a-mixin-because-it-extends-a-class-other-than-object-a53eb5f214b0

here is olso some solutions that worked for me..

from scoped_model.

passsy avatar passsy commented on June 12, 2024

Can you post some code? You can't mixin a Model because to mixin a class, it has to extend Object.

from scoped_model.

ChristBKK avatar ChristBKK commented on June 12, 2024

Thanks for the reply @passsy . Appreciate it!
So I guess I try to mixin 2 models to each other which is not allowed right? Any idea what I have todo different? Just call Model on the main model and keep the other 2 as class only?

Please keep in mind I changed Products to Posts, just a renaming.

Main Model

import 'package:scoped_model/scoped_model.dart';

import './posts.dart';
import './user.dart';

class MainModel extends Model with UserModel, PostsModel {}

Posts Model

import 'package:scoped_model/scoped_model.dart';

import '../models/post.dart';

class PostsModel extends Model {
  List<Post> _posts = [];

  List<Post> get posts {
    return List.from(_posts);
  }

  void addPost(Post product) {
    _posts.add(product);
  }

  void updatePost(int index, Post product) {
    _posts[index] = product;
  }

  void deletePost(int index) {
    _posts.removeAt(index);
  }
}

User Model

import 'package:scoped_model/scoped_model.dart';

import '../models/user.dart';

class UserModel extends Model {
  User _authenticatedUser;

  void login(String email, String password) {
    _authenticatedUser = User(id: 'xxxxx', email: email, password: password);
  }
}

from scoped_model.

ChristBKK avatar ChristBKK commented on June 12, 2024

Thanks will test this out!

from scoped_model.

oliverbytes avatar oliverbytes commented on June 12, 2024

tried yours @tomosullivan8 but getting this error flutter: Another exception was thrown: Error: Could not find the correct ScopedModel.

from scoped_model.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.