wiredash

Creator: coderz1093

Last updated:

Add to Cart

Description:

wiredash

Wiredash SDK for Flutter #






wiredash.com | Console | Pub | Documentation | Get Started

Real-time analytics: Get real-time analytics that is GDPR-compliant and hosted in the EU 🇪🇺
Capture in-app user feedback: Get direct user feedback from within your app with screenshots and tags
Schedule promoter score surveys: Schedule and automate promoter score surveys.
Console: The Wiredash console provides a dashboard to access your feedback and analytics
Universal compatibility: Written in Dart, Wiredash is compatible with Android, iOS, Web, macOS, Windows, Linux, and IoT
Free: Wiredash is free for up to 100.000 monthly active devices


From members of the Flutter Community 💙 for the Flutter Community 💙
3-Minute Quick Start #

It takes less than 180 seconds to integrate Wiredash in your existing app 🚀
Visit docs.wiredash.com for the in-depth
guide and additional info.

1. Create an account and project #
Start by visiting the Wiredash Console: Wiredash Console.
Create your free account using Google or GitHub or request an email sign-in link.
Then create a project with a descriptive name.
2. Add Wiredash to your pubspec.yaml #
$ flutter pub add wiredash:^2.2.0
copied to clipboard
dependencies:
flutter:
sdk: flutter
...
wiredash: ^2.2.0
copied to clipboard
3. Wrap your root widget with Wiredash #
Wrap the root widget of your existing app with Wiredash and make sure to fill in the projectId and SDK secret
from the Wiredash Console > Your project >
Settings > General Settings.
import 'package:flutter/material.dart';
import 'package:wiredash/wiredash.dart';

class MyApp extends StatelessWidget {

@override
Widget build(BuildContext context) {
return Wiredash(
projectId: 'YOUR-PROJECT-ID',
secret: 'YOUR-SECRET',
child: MaterialApp(
// Your Flutter app is basically Wiredash's direct child.
// This can be a MaterialApp, WidgetsApp or whatever widget you like.
),
);
}
}
copied to clipboard
That's already it. Yes, it's really that easy.
4. (Optional) More features #
Launch the feedback flow
Call the Wiredash.of(context).show() method from anywhere in your app to launch the Wiredash Feedback flow.
FloatingActionButton(
onPressed: () {
Wiredash.of(context).show(inheritMaterialTheme: true);
},
child: Icon(Icons.feedback_outlined),
),
copied to clipboard
Checkout examples/theming for the full example or head to the documentation for more info.
Launch the Promoter Score Survey
FloatingActionButton(
onPressed: () {
Wiredash.of(context).showPromoterSurvey(force: true);
},
child: Icon(Icons.feedback_outlined),
),
copied to clipboard
Checkout examples/promoter_score for the full example or head to the documentation for more info.
License #
The Wiredash SDK is released under the Attribution Assurance License which is redundant with BSD.
See LICENSE for details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.