Skip to content

Add some additional required installation steps to the readme #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ Released under the MIT License, anybody can freely include this in any type of p
initializeOnAngular();
}
}

For iOS you also need to register the module within your `app/main.ts` file right before the `bootstrapModule()` call:

import { isIOS } from "tns-core-modules/platform";
import * as elementRegistryModule from 'nativescript-angular/element-registry';

if (isIOS) {
elementRegistryModule.registerElement("WebImage", () => require("nativescript-web-image-cache").WebImage);
}

platformNativeScriptDynamic().bootstrapModule(AppModule);

After initialisation, the markup tag `<WebImage></WebImage>` can be used in templates of components.

<GridLayout rows='*' columns='*'>
Expand Down