easy_model 1.0.0 copy "easy_model: ^1.0.0" to clipboard
easy_model: ^1.0.0 copied to clipboard

outdated

A simple flutter state management package, can use global and local management

Language:简体中文

💼 easy_model #

support Flutter Web pub package demo

A simple flutter state management package, supporting local state management and global state management

  • support initState() and dispose()
  • Support global access to Model objects

🚀 Getting Started #

Before the introduction, you can have a try for Online Demo

🔑 Useage #

First define your Model object

class YourModel extends Model {
  @override
  void initState() {...}

  @override
  void dispose() {...}

  int value = 0;
}

When you want to use it in combination with a Widget or Page, you can do like this

ModelWidget<YourModel>(
  childBuilder: (ctx, model) => YourWidgetOrPage(),
  modelBuilder: () => YourModel(),
),

🔄 Get data and refresh #

get data

final model = ModelGroup.findModel<YourModel>();

refresh

model.refresh();

📃 Same pages and models #

If you have the following usage scenarios

Using ModelGroup.findModel <T> () is unable to get the Model object corresponding to each Page

Then you can use ModelGroup.findModelByKey <T> (modelKey) to obtain the corresponding Model, but it should be noted that a different modelKey must be specified when creating ModelWidget

ModelWidget<YourModel>(
  childBuilder: (ctx, model) => YourWidgetOrPage(),
  modelBuilder: () => YourModel(),
  modelKey: 'YourModelKey'
),

///get model
final model = ModelGroup.findModelByKey<YourModel>('YourModelKey');

🤗 Welcome for issue and pr #

Click here to create an issue

Click here to submit a pull request (please submit pr by forking the dev branch)

1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A simple flutter state management package, can use global and local management

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on easy_model