All Projects → flutter-food → Gesture_recognition

flutter-food / Gesture_recognition

Licence: other
a gesture recognition verification lock

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Gesture recognition

Jxpatternlock
An easy-to-use, powerful, customizable pattern lock view in swift. 图形解锁/手势解锁 / 手势密码 / 图案密码 / 九宫格密码
Stars: ✭ 165 (+345.95%)
Mutual labels:  password, gesture
SwiftyCodeView
Fully customizable UI Component for verification codes written in swift with RxSwift support!
Stars: ✭ 86 (+132.43%)
Mutual labels:  verification, password
Upash
🔒Unified API for password hashing algorithms
Stars: ✭ 484 (+1208.11%)
Mutual labels:  password, verification
Dynamic widget
A Backend-Driven UI toolkit, build your dynamic UI with json, and the json format is very similar with flutter widget code.
Stars: ✭ 851 (+2200%)
Mutual labels:  widget
Iconswitch
🍭 Custom Android Switch widget
Stars: ✭ 874 (+2262.16%)
Mutual labels:  widget
Scroll bars
Hide or show app bar and bottom navigation bar while scrolling.
Stars: ✭ 28 (-24.32%)
Mutual labels:  widget
Paging library
A Flutter package for paginating a list view
Stars: ✭ 35 (-5.41%)
Mutual labels:  widget
Prompt Password
This repository has been archived, use the built-in password prompt in Enquirer instead.
Stars: ✭ 8 (-78.38%)
Mutual labels:  password
Rverify.js
✅❎ A lightweight image rotation verification plugin.
Stars: ✭ 33 (-10.81%)
Mutual labels:  verification
Badge
Drawable of badge.
Stars: ✭ 943 (+2448.65%)
Mutual labels:  widget
Mumble Widget
🔋 A web-based channel viewer widget to display active users on your Mumble server.
Stars: ✭ 14 (-62.16%)
Mutual labels:  widget
React Facial Feature Tracker
React Component for Facial Feature Recognition based on the clmtracker
Stars: ✭ 13 (-64.86%)
Mutual labels:  recognition
Awesome Pulseaudio widget
PulseAudio widgtet for the Awesome Window Manager that uses DBus
Stars: ✭ 29 (-21.62%)
Mutual labels:  widget
Liquidhaskell
Liquid Types For Haskell
Stars: ✭ 863 (+2232.43%)
Mutual labels:  verification
Passwordcockpit
Passwordcockpit is a simple, free, open source, self hosted, web based password manager for teams. It is made in PHP, Javascript, MySQL and it run on a docker service. It allows users with any kind of device to safely store, share and retrieve passwords, certificates, files and much more.
Stars: ✭ 34 (-8.11%)
Mutual labels:  password
Random Password Generator
Automatic random password generator class for PHP
Stars: ✭ 9 (-75.68%)
Mutual labels:  password
Flutter Unity View Widget
Embeddable unity game engine view for Flutter. Advance demo here https://github.com/juicycleff/flutter-unity-arkit-demo
Stars: ✭ 961 (+2497.3%)
Mutual labels:  widget
React Chat Widget
Awesome chat widget for your React App
Stars: ✭ 881 (+2281.08%)
Mutual labels:  widget
Probable Wordlists
Version 2 is live! Wordlists sorted by probability originally created for password generation and testing - make sure your passwords aren't popular!
Stars: ✭ 7,312 (+19662.16%)
Mutual labels:  password
Mentalist
Mentalist is a graphical tool for custom wordlist generation. It utilizes common human paradigms for constructing passwords and can output the full wordlist as well as rules compatible with Hashcat and John the Ripper.
Stars: ✭ 945 (+2454.05%)
Mutual labels:  password

gesture_recognition

Pub support

a gesture recognition verification lock

中文 English

Dependencies

dependencies:
  gesture_recognition: ^version  

Demonstration

Example

Settings PassWord
GestureView(
	immediatelyClear: true,
	size: MediaQuery.of(context).size.width,
	onPanUp: (List<int> items) {
	  setState(() {
	    result = items;
	  });
	},
)
Verify PassWord
GlobalKey<GestureState> gestureStateKey = GlobalKey();

GestureView(
    key: this.gestureStateKey,
    size: MediaQuery.of(context).size.width*0.8,
    selectColor: Colors.blue,
    onPanUp: (List<int> items) {
      analysisGesture(items);
    },
    onPanDown: () {
      gestureStateKey.currentState.selectColor = Colors.blue;
      setState(() {
        status = 0;
      });
    },
)

Parameter

Props Type Description DefaultValue isRequired
size double The size of the component, the width is equal to the height true
selectColor Color The color when selected Colors.blue false
unSelectColor Color Color when not selected Colors.grey false
ringWidth double Outer ring width of the point 4 false
ringRadius double Inner ring radius of the point 30 false
showUnSelectRing bool Whether the outer ring is displayed when the point is not selected true false
circleRadius double Inner radius of the point 20 false
lineWidth double Connection line width 6 false
onPanUp Function(List) After the finger is raised false
onPanDown Function() After pressing your finger false
immediatelyClear bool Clear the trace after lifting the hand false false
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].