view_model 0.4.3+1 copy "view_model: ^0.4.3+1" to clipboard
view_model: ^0.4.3+1 copied to clipboard

view model for flutter. Simple and Lightweight & Cross - Widget Sharing & Automatic Resource Disposal

0.4.3 #

  • Add maybeWatchViewModel and maybeReadViewModel
  • update watchViewModel find logic
VM watchViewModel<VM extends ViewModel>({
  ViewModelFactory<VM>? factory,
  String? key,
});
Parameter Name Type Optional Description
factory ViewModelFactory<VM>? Provides the construction method for the ViewModel. Optional; if an existing instance is not found in the cache, it will be used to create a new one.
key String? Specifies a unique key to support sharing the same ViewModel instance. First, it tries to find an instance with the same key in the cache.
tag Object? Add a tag for ViewModel instance. get tag by viewModel.tag. and it's used by find ViewModel by watchViewModel(tag:tag).

🔍 Lookup Logic Priority (Important) The internal lookup and creation logic of watchViewModel is as follows (executed in priority order):

  1. If a key is passed in:
  • First, attempt to find an instance with the same key in the cache.
  • If a factory exists, use the factory to get a new instance.
  • If no factory is found and no instance is found, an error will be thrown.
  1. If a tag is passed in, attempt to find the latest created instance which has the same tag in the cache.
  2. If nothing passed in, attempt to find the latest created instance of this type in the cache.

⚠️ If no ViewModel instance of the specified type is found, an error will be thrown. Ensure that the ViewModel has been correctly created and registered before use.

0.4.2 #

  • Support find existing ViewModel by tag

set tag in ViewModelFactory.getTag():

class MyViewModelFactory extends ViewModelFactory<MyViewModel> {

  @override
  Object? getTag() {
    return 'tag';
  }
}

find existing ViewModel by tag:

MyViewModel get viewModel => watchViewModel<MyViewModel>(tag: 'tag');

0.4.1 #

Breaking change:

  • Use recycleViewModel instead of refreshViewModel.

0.4.0 #

Breaking change:

  • Use ViewModel instead of StatelessViewModel.

  • Use StateViewModel instead of ViewModel.

  • Use either watchViewModel or readViewModel instead of getViewModel/ requireExistingViewModel.

  • Use StateViewModel.listenState instead of ViewModel.listen.

  • Use ViewModel.listen instead of ViewModel.addListener.

  • Support ViewModel.read<T> to read existing view model globally.

0.3.0 #

2
likes
160
points
578
downloads

Publisher

verified publisherpub.lwjlol.com

Weekly Downloads

view model for flutter. Simple and Lightweight & Cross - Widget Sharing & Automatic Resource Disposal

Repository (GitHub)
View/report issues

Topics

#vm #view-model #state #state-manager

Documentation

API reference

License

MIT (license)

Dependencies

flutter, uuid

More

Packages that depend on view_model