digit_dss 1.0.1 copy "digit_dss: ^1.0.1" to clipboard
digit_dss: ^1.0.1 copied to clipboard

DSS Dashboard for campaign management

Digit DSS #

DSS Dashboard for campaign management

Features #

  • Dashboard Metric and Table Charts support

Getting Started #

To use this package, add the following dependency to your pubspec.yaml file:

dependencies:
  digit_dss: ^any

Usage #

To Navigate to any screens of the package:

First add digit_dss_router to your main app router

Navigate to the required screen using the below code and pass the required data:

context.router.push(UserDashboardRoute(),);

Digit DSS package requires below data to be passed from main app:


String? _tenantId;
String? _projectId;
String? _actionPath;
String? _appVersion;
ProjectModel? _selectedProject;
DashboardConfigSchema? _dashboardConfig;

To set the required data use:

DashboardSingleton().setInitialData();