Skip to content
This repository has been archived by the owner on Nov 24, 2022. It is now read-only.

Plugins

José Pereira edited this page Apr 14, 2020 · 5 revisions

Plugins

Standalone plugins that can be used directly with MvvmCross. Take a look at the samples to get more information about the usage.

Logger

It provides simple file logging mechanism. It also provides methods to log execution times. This plugin is dependent of the storage plugin to save information to files.

  • .NetStandard 2.0: Implemented

Notification

Plugin inspired in the Messenger plugin of the MvvmCross framework. It provides OneWay and TwoWay message notification capabilities. Is also provides Background and UI message subscription. Also added support for delayed notifications. Useful to be used in the resume of views.

  • .NetStandard 2.0: Implemented

Storage

Plugin inspired in the File plugin of MvvmCross framework. I provides writing and reading to files. It's possible to define the area where to store the file. The major upgrade of this plugin, is the ability to write/read encrypted files. It can encrypt files as one entire block, or it can add encrypted lines as needed. This second option is very useful, for example, to create encrypted log files.

  • .NetStandard 2.0: Implemented
  • Droid: Implemented
  • iOS: Implemented
  • UWP: Implemented
Clone this wiki locally