All Projects → kherel → Reviews_slider

kherel / Reviews_slider

Licence: mit
A Flutter animated widget made to help users leave reviews and feedbacks

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Reviews slider

Img Comparison Slider
Image comparison slider. Compare images before and after. Supports React, Vue, Angular.
Stars: ✭ 45 (-39.19%)
Mutual labels:  slider
Summerslider
🍭 SummerSlider that can distinguish the parts where the advertisement of the video player comes out
Stars: ✭ 61 (-17.57%)
Mutual labels:  slider
Bughunt
A weekly challenge where we share some code and you find a bug in it.
Stars: ✭ 68 (-8.11%)
Mutual labels:  review
Tiny Swiper
Ingenious JavaScript Carousel powered by wonderful plugins. Lightweight yet extensible. Import plugins as needed, No more, no less.
Stars: ✭ 1,061 (+1333.78%)
Mutual labels:  slider
Laravel Reviewable
Adds a reviewable feature to your laravel app.
Stars: ✭ 57 (-22.97%)
Mutual labels:  review
D3 Simple Slider
A simple interactive SVG slider
Stars: ✭ 64 (-13.51%)
Mutual labels:  slider
React Image Comparison Slider
A React component to compare images with a slider.
Stars: ✭ 43 (-41.89%)
Mutual labels:  slider
Laravel Review Rateable
Review & Rating System For Lavavel 5, 6 & 7
Stars: ✭ 72 (-2.7%)
Mutual labels:  review
Study
Algorithm / Book Reviews / Interview / ETC
Stars: ✭ 58 (-21.62%)
Mutual labels:  review
Pert
A simple command line (bash/shell) utility to estimate tasks using PERT [Program Evaluation and Review Technique]
Stars: ✭ 66 (-10.81%)
Mutual labels:  review
Jcslider
🏂 A responsive slider jQuery plugin with CSS animations
Stars: ✭ 52 (-29.73%)
Mutual labels:  slider
React Carousel
Lightweight carousel component for react
Stars: ✭ 56 (-24.32%)
Mutual labels:  slider
Jonsnow
App Store/Google Play review watcher, deliver new reviews to slack channel
Stars: ✭ 65 (-12.16%)
Mutual labels:  review
Sizeslidebutton
A fun Swift UIControl for picking a size
Stars: ✭ 46 (-37.84%)
Mutual labels:  slider
React Slidy
🍃 React Slidy - Minimalistic and smooth touch slider and carousel component for React
Stars: ✭ 69 (-6.76%)
Mutual labels:  slider
Yjsliderview
方便快捷轻量级的SlideView接入,模仿UITableView的API实现接口。使用Frame和约束布局都很方便。所有需要的就两个文件YJSliderView的头文件和实现文件。
Stars: ✭ 43 (-41.89%)
Mutual labels:  slider
Wallop
⛔️ currently unmaintained ⛔️ A minimal JS library for showing & hiding things
Stars: ✭ 1,125 (+1420.27%)
Mutual labels:  slider
React Marquee Slider
The marquee slider of your deepest dreams. Only for React.js ⛺
Stars: ✭ 73 (-1.35%)
Mutual labels:  slider
React Native Carousel View
react-native carousel, support in both Android and iOS
Stars: ✭ 70 (-5.41%)
Mutual labels:  slider
Deep Review
A collaboratively written review paper on deep learning, genomics, and precision medicine
Stars: ✭ 1,141 (+1441.89%)
Mutual labels:  review

reviews_slider

Pub

Animated widget with changing smile to collect user review score

mobile

tablet

Getting started

Add reviews_slider: "^1.0.4" in your pubspec.yaml dependencies.

dependencies:
 reviews_slider: "^1.0.4"

How To Use

Import the following package in your dart file

import 'package:reviews_slider/reviews_slider.dart';

Basic Widget

  ReviewSlider(
    onChange: (int value){
      // active value is an int number from 0 to 4, where:
      // 0 is the worst review value
      // and 4 is the best review value
      print(value);
    }),
  ),
Parameter Default Description
initialValue 2 the init value of the slider
onChange Triggered every time when a pointer have changed the value of the slider and is no longer in contact with the screen.
options ['Terrible', 'Bad', 'Okay', 'Good', 'Great'] Review titles
optionStyle TextStyle(color: Colors.black) Text style of review titles
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].