All Projects → wiredashio → Wiredash Sdk

wiredashio / Wiredash Sdk

Licence: other
Interactive user feedback tool for Flutter 🎉

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Wiredash Sdk

Snapfeed Sdk
Interactive user feedback tool for Flutter 🎉
Stars: ✭ 43 (-81.47%)
Mutual labels:  sdk, widget
Wechat
WeChat SDK for Go (微信SDK:简单、易用)
Stars: ✭ 3,144 (+1255.17%)
Mutual labels:  sdk
Cineform Sdk
The GoPro® CineForm video codec SDK.
Stars: ✭ 219 (-5.6%)
Mutual labels:  sdk
Newnode
NewNode decentralized Content Distribution Network
Stars: ✭ 223 (-3.88%)
Mutual labels:  sdk
Embeddable React Widget
Create an embbedable js widget with react
Stars: ✭ 222 (-4.31%)
Mutual labels:  widget
Toolbarindicator
A toolbar indicator for android, likes twitter's.
Stars: ✭ 227 (-2.16%)
Mutual labels:  widget
Amplitude Ios
Native iOS/tvOS/macOS SDK
Stars: ✭ 216 (-6.9%)
Mutual labels:  sdk
Flutter fluid slider
A fluid design slider that works just like the Slider material widget.
Stars: ✭ 232 (+0%)
Mutual labels:  widget
Androidpush
更方便的将各个rom厂商自己的推送服务进行集成,并统一管理(几乎包含了国内所有的手机大厂)
Stars: ✭ 232 (+0%)
Mutual labels:  sdk
Sy flutter widgets
纯flutter Widget组件库,不依赖Native及其它第三方package。包括省市区选择器,Rate评分,Stepper步进器,照片墙,地址编辑,自带加载更多的ListView和GridView
Stars: ✭ 225 (-3.02%)
Mutual labels:  widget
Nodejs Sdk
百度AI开放平台 Node.js SDK
Stars: ✭ 222 (-4.31%)
Mutual labels:  sdk
Titan
Create Discord server widgets for websites of all sizes! A simple to setup process for end-users. Server members may view or send messages into an embedded Discord channel.
Stars: ✭ 221 (-4.74%)
Mutual labels:  widget
Applicationinsights Node.js
Microsoft Application Insights SDK for Node.js
Stars: ✭ 229 (-1.29%)
Mutual labels:  sdk
Applicationinsights Home
Application Insights main repository for documentation of overall SDK offerings for all platforms.
Stars: ✭ 221 (-4.74%)
Mutual labels:  sdk
Core
PHP Telegram Bot based on the official Telegram Bot API
Stars: ✭ 2,899 (+1149.57%)
Mutual labels:  sdk
Ios Widgets
Collection of iOS Widgets
Stars: ✭ 219 (-5.6%)
Mutual labels:  widget
Ziggba
Work in progress SDK for creating Game Boy Advance games using Zig programming language.
Stars: ✭ 223 (-3.88%)
Mutual labels:  sdk
Cognitive Face Python
Python SDK for the Microsoft Face API, part of Cognitive Services
Stars: ✭ 226 (-2.59%)
Mutual labels:  sdk
Form Render
🚴‍♀️ 阿里飞猪 - 很易用的中后台「表单 / 表格 / 图表」解决方案
Stars: ✭ 3,881 (+1572.84%)
Mutual labels:  widget
Firecracker Go Sdk
An SDK in Go for the Firecracker microVM API
Stars: ✭ 233 (+0.43%)
Mutual labels:  sdk

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].