Giter Site home page Giter Site logo

joran-dob / wiredash-sdk Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wiredashio/wiredash-sdk

0.0 1.0 0.0 1 MB

Interactive user feedback tool for Flutter ๐ŸŽ‰

License: Other

Kotlin 0.04% Ruby 1.20% Swift 0.71% Objective-C 0.01% Dart 96.79% HTML 0.52% Shell 0.71%

wiredash-sdk's Introduction

Wiredash Logo

Wiredash SDK for Flutter

Pub Build Website likes popularity pub points

Wiredash is probably the easiest, and most convenient way to capture in-app user feedback, wishes, ratings and much more. The SDK is completely written in Dart and runs on Android, iOS, Desktop and the Web. For more info, head over to wiredash.io.

๐Ÿš€ Getting Started

TIP Visit docs.wiredash.io for the in-depth guide and additional info.

1. Create a free account on wiredash.io

Sign in with a valid Google or GitHub account.

2. Add wiredash to your pubspec.yaml.

name: your_flutter_app
dependencies:
  flutter:
    sdk: flutter
  wiredash: ^0.6.0

3. Wrap your root widget with Wiredash

Fill in the projectId and secret from Wiredash console > Project > Settings

import 'package:flutter/material.dart';
import 'package:wiredash/wiredash.dart';

class MyApp extends StatelessWidget {
  // It's important that Wiredash and your root Material- / Cupertino- / WidgetsApp
  // share the same Navigator key.
  final _navigatorKey = GlobalKey<NavigatorState>();

  @override
  Widget build(BuildContext context) {
    return Wiredash(
      projectId: 'YOUR-PROJECT-ID',
      secret: 'YOUR-SECRET',
      navigatorKey: _navigatorKey,
      child: MaterialApp(
        navigatorKey: _navigatorKey,
        title: 'Flutter Demo',
        home: YourSuperDuperAwesomeApp(),
      ),
    );
  }
}

4. Launch the feedback flow

From anywhere in your app

ElevatedButton(
  // launch wiredash where appropriate in your App 
  onPressed: () => Wiredash.of(context).show(),
  child: Text('Give Feedback'),
),

bottom sheet

๐ŸŽจ Customization

The Wiredash SDK is completely customizable and offers many configuration options!

For all the details, check out the full documentation at docs.wiredash.io/configuration.

๐Ÿ“ƒ License

The Wiredash SDK is released under the Attribution Assurance License. See LICENSE for details.

wiredash-sdk's People

Contributors

atoka93 avatar blkkkbvsik avatar brianegan-wiredash avatar bruno-garcia avatar creativecreatorormaybenot avatar flschweiger avatar huextrat avatar kylekun avatar nash0x7e2 avatar orestesgaolin avatar passsy avatar roughike avatar yazinsai avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.