Track screens
Contentsquare aggregate user behavior and engagement at the screen level. To leverage our full range of features, you must implement effective screen tracking.
You can set this up:
- Manually, by calling a dedicated API.
- Automatically, by using our observer to track screens based on changes in the navigation stack.
Track screens manually
Section titled Track screens manuallyCall the .send(String)
API when a screen appears to track screens manually. When you call the API, the SDK logs a screenview event which identifies the new screen with the screen name you provided.
Back navigation handling
Section titled Back navigation handlingBack navigation is not automatically tracked by the SDK.
When back navigation occurs the send
method should be manually invoked with the screen name of the previous screen.
Example with a custom navigation observer
Section titled Example with a custom navigation observerScreen name handling
Section titled Screen name handlingThe screen name length is not limited on the SDK side. However, it’s important to note that there is a limit of 2083 characters on the server side. Ensure that screen names do not exceed this limit to prevent any issues with data transmission and processing.
Handling Screen Views When App Returns from Background
Section titled Handling Screen Views When App Returns from BackgroundThe Contentsquare SDK automatically triggers a screen view when the app is moved to the background and subsequently brought back to the foreground. This occurs provided that a screen view with a screen name has been triggered previously. In such cases, the SDK will use the last screen name that was set.
Implementation recommendations
Section titled Implementation recommendationsFrom a functional standpoint, we expect a screenview to be sent:
- When the screen becomes visible
- When a modal or pop-up is closed, returning the user to the screen
- When a route is popped, returning the user to the screen
Achieving this can be facilitated through a NavigatorObserver ↗. This observer can be used to listen to route changes and send screenviews accordingly.
How to name screens
Section titled How to name screensAs a general rule, aim to keep distinct screen names under 100 characters. Choose names that provide a comprehensive understanding of the screen’s content or purpose. This will help you to identify the screen in the Contentsquare interface.
Separate words with space, dash or underscore characters
Section titled Separate words with space, dash or underscore charactersIf you want to create screen names with multiple words, it’s best to separate them using spaces, dashes, or underscores. Contentsquare will handle the formatting automatically.
Example: For a sub-category list of a retail app, use Home and Living - Home Furnishings
instead of .homeLivingHomeFurnishings
Use screen template/layout names
Section titled Use screen template/layout namesAs a general guideline, opt for names that describe the screen template or layout rather than focusing on specific content (data). This approach will minimize the number of unique screen names, making Contentsquare easier to use and reducing the potential for Personal Data transmission.
Examples of screen types falling into this category include Product Detail, Event Detail, Conversation/Chat, and User Profile.
Screens with multiple states/layouts
Section titled Screens with multiple states/layoutsScreens can have different layouts or states depending on the user context. In this case, append its value to the screen name.
Home screen
State | Screen name |
---|---|
App landing layout | Home |
Women products layout | Home - Women |
Men products layout | Home - Men |
Sales layout | Home - Sales |
Product Detail screen (PDP)
State | Screen name |
---|---|
Users on a Top for Women PDP | PDP - Clothing - Women - Tops |
Users on a Microwave PDP | PDP - Kitchenware - Electrics - Microwave |
Users on a Hotel details screen | PDP - Holiday type - Season - Board |
User account screen
State | Screen name |
---|---|
Overview | My Account - Dashboard |
Order history | My Account - Order history |
Returns | My Account - Returns |
Search screen
State | Screen name |
---|---|
Search | Search |
Search results for “Skincare” products | Search - Skincare |
Search results error screen | Search - Error |
Cart screen
State | Screen name |
---|---|
Empty cart | Cart - Empty |
Items have been added to the cart | Cart - Populated |
Issues with availability or pricing | Cart - Error |
Checkout screen
State | Screen name |
---|---|
User provides name, surname, and date of birth | Checkout - User Details |
User provides shipping address | Checkout - Shipping Details |
User inputs their credit card information | Checkout - Payment |
Track screens automatically
Section titled Track screens automaticallyAutomatic screen view tracking can be done using the ContentsquareNavigatorObserver
. This will observe the navigation stack of the application and log screen events accordingly.
This observer can be attached to any WidgetApp
(like MaterialApp
, CupertinoApp
) or to a RouterConfig
Configuration
Section titled ConfigurationThe ContentsquareNavigatorObserver
can be configured with the following arguments:
ShouldTrack
Section titled ShouldTrackAn optional callback function that determines whether a specific route should be tracked. The function takes a Route
as input and returns a bool
.
Use this function to selectively exclude certain routes from automatic tracking by returning false for those routes.
By default, all routes are tracked.
ScreenNameProvider
Section titled ScreenNameProviderAn optional callback function used to customize the screen name for a given route. The function takes a Route
as input and returns a String
representing the desired screen name.
Use this function to define custom screen names for specific routes.
By default, the route’s name is used if available; otherwise, the route type will be used.
CustomVarsProvider
Section titled CustomVarsProviderAn optional callback function used to provide a list of custom variables for a specific route. The function takes a Route
as input and returns a List<CustomVar>
.
Use this function to attach custom variables to specific routes for tracking purposes.
Troubleshooting
Section titled TroubleshootingTab bar
Section titled Tab barTabBar views are commonly tracked as individual screens. However, most TabBar implementations push the route to the navigation stack only during initialization, which can make it challenging to properly track navigation events for each tab change.
To support TabBar tracking correctly, additional configuration may be necessary.
For example, when using AutoTabsRouter from the AutoRoute package, the default behavior does not track tab changes automatically. In this case, combining an AutoRouteObserver with the manual tracking API is required to ensure each tab is tracked as a distinct screen.
PageBuilder
Section titled PageBuilderIf you use a pageBuilder
in your routes, make sure to set the page .name
.
Example using GoRoute: