Created
August 24, 2020 06:53
-
-
Save bachhm-dev/8d0c0fd515f36719975cf6ad97b00106 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as firebase from "nativescript-plugin-firebase"; | |
| trackingView() { | |
| return firebase.analytics | |
| .setScreenName({ | |
| screenName: "Home", | |
| }) | |
| .then( | |
| () => { | |
| console.log("Screen name set"); | |
| }, | |
| (error) => { | |
| console.log(`Screen ${error}`); | |
| } | |
| ); | |
| }, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment