Xamarin Cross-Platform PCL for a Rich Text Editor with style buttons and html import/export.
For Xamarin.Forms cross-platform projects, add the following line to `App.xaml.cs` or `App.cs`:```c# DependencyService.Get(); // in OnStart method ```
For use in a Xamarin.iOS app, add the following line to UIApplicationDelegate.cs
:
RegisterEditorIOS register = new RegisterEditorIOS(); // Insert after Forms.Init() in FinishedLaunching
For Android, add in the following to the OnCreate
method of MainActivity.cs
:
RegisterEditorDroid register = new RegisterEditorDroid();