View all the directives in action at https://firebaseui.github.io/ionic-authentication
- Angular (requires Angular 2 or higher)
Install above dependencies via npm.
Now install @firebaseui/ionic-authentication
via:
npm install --save @firebaseui/ionic-authentication
Note:If you are using
SystemJS
, you should adjust your configuration to point to the UMD bundle. In your systemjs config file,map
needs to tell the System loader where to look for@firebaseui/ionic-authentication
:
map: {
'@firebaseui/ionic-authentication': 'node_modules/@firebaseui/ionic-authentication/bundles/authentication.umd.js',
}
Once installed you need to import the main module:
import { IonicAuthFirebaseUIModule } from '@firebaseui/ionic-authentication';
The only remaining part is to list the imported module in your application module. The exact method will be slightly
different for the root (top-level) module for which you should end up with the code similar to (notice IonicAuthFirebaseUIModule .forRoot()
):
import { IonicAuthFirebaseUIModule } from '@firebaseui/ionic-authentication';
@NgModule({
declarations: [AppComponent, ...],
imports: [IonicAuthFirebaseUIModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}
Other modules in your application can simply import IonicAuthFirebaseUIModule
:
import { IonicAuthFirebaseUIModule } from '@firebaseui/ionic-authentication';
@NgModule({
declarations: [OtherComponent, ...],
imports: [IonicAuthFirebaseUIModule, ...],
})
export class OtherModule {
}
Copyright (c) 2018 Anthony Nahas. Licensed under the MIT License (MIT)