Giter VIP home page Giter VIP logo

flutter-passcode's People

Contributors

bedaut avatar imejiasoft avatar lai32290 avatar mix1009 avatar ssanderson avatar xputnikx avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

flutter-passcode's Issues

Example failed to build android, works on IOS

Launching lib/main.dart on Android SDK built for x86 in debug mode...
[!] Your app isn't using AndroidX.
To avoid potential build failures, you can quickly migrate your app by following the steps on https://goo.gl/CP92wY.
Running Gradle task 'assembleDebug'...

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':app:processDebugResources'.

Android resource linking failed
Output: /Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml:186: error: resource android:attr/fontVariationSettings not found.
/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml:187: error: resource android:attr/ttcIndex not found.
error: failed linking references.

Command: /Users/marcmathys/.gradle/caches/transforms-1/files-1.1/aapt2-3.2.1-4818971-osx.jar/18bf3ef7ae11aba806cb141a66e9d4af/aapt2-3.2.1-4818971-osx/aapt2 link -I
/Users/marcmathys/Library/Android/sdk/platforms/android-27/android.jar
--manifest
/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/merged_manifests/debug/processDebugManifest/merged/AndroidManifest.xml
-o
/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/processed_res/debug/processDebugResources/out/resources-debug.ap_
-R
@/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt
--auto-add-overlay
--java
/Users/marcmathys/AndroidStudioProjects/example/build/app/generated/not_namespaced_r_class_sources/debug/processDebugResources/r
--custom-package
com.redeyes.passcodescreen.example
-0
apk
--output-text-symbols
/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/symbols/debug/R.txt
--no-version-vectors
Daemon: AAPT2 aapt2-3.2.1-4818971-osx Daemon #0
Output: /Users/marcmathys/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/9c79557a07b349133747795d92e9553b/res/values/values.xml:89:5-125:25: AAPT: error: resource android:attr/fontVariationSettings not found.

/Users/marcmathys/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/9c79557a07b349133747795d92e9553b/res/values/values.xml:89:5-125:25: AAPT: error: resource android:attr/ttcIndex not found.

error: failed linking references.
Command: /Users/marcmathys/.gradle/caches/transforms-1/files-1.1/aapt2-3.2.1-4818971-osx.jar/18bf3ef7ae11aba806cb141a66e9d4af/aapt2-3.2.1-4818971-osx/aapt2 link -I
/Users/marcmathys/Library/Android/sdk/platforms/android-27/android.jar
--manifest
/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/merged_manifests/debug/processDebugManifest/merged/AndroidManifest.xml
-o
/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/processed_res/debug/processDebugResources/out/resources-debug.ap_
-R
@/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt
--auto-add-overlay
--java
/Users/marcmathys/AndroidStudioProjects/example/build/app/generated/not_namespaced_r_class_sources/debug/processDebugResources/r
--custom-package
com.redeyes.passcodescreen.example
-0
apk
--output-text-symbols
/Users/marcmathys/AndroidStudioProjects/example/build/app/intermediates/symbols/debug/R.txt
--no-version-vectors
Daemon: AAPT2 aapt2-3.2.1-4818971-osx Daemon #0

  • Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

  • Get more help at https://help.gradle.org

BUILD FAILED in 9s
Finished with error: Gradle task assembleDebug failed with exit code 1

Failed to build

Because example depends on passcode_screen from path which doesn't exist (could not find package passcode_screen at "....\passcode_screen"), version solving failed.
pub get failed (66)

add reset function

to clear programmatically. i am doing a change pin feature using this. currently, i dont see any function in passcode_screen.dart

so a property like
changePin: true

would be nice. so if the user incorrectly enters both pin, a restart button will appear . just a suggestion.

Invalid curve endpoint at 1.0

Invalid curve endpoint at 1.0

Curves must map 0.0 to near zero and 1.0 to near one but ShakeCurve mapped 1.0 to 3.6739403974420594e-16, which is near 0.0.

@OverRide
initState() {
super.initState();
streamSubscription = widget.shouldTriggerVerification.listen((isValid) => _showValidation(isValid));
controller = AnimationController(duration: const Duration(milliseconds: 500), vsync: this);
final Animation curve = CurvedAnimation(parent: controller, curve: ShakeCurve());
animation = Tween(begin: 0.0, end: ### 10.0).animate(curve)
..addStatusListener((status) {
if (status == AnimationStatus.completed) {
setState(() {
enteredPasscode = '';
controller.value = 0;
});
}
})
..addListener(() {
setState(() {
// the animation object’s value is the changed state
});
});
}

How to

Example as "passcode screen" as first route/screen ?

Equal replacement for digitSize property

I think there was digitSize property in the KeyboardUIConfig. It seems not available anymore. Now the KeyboardUIConfig constructors are:

const KeyboardUIConfig({
  this.digitBorderWidth = 1,
  this.keyboardRowMargin = const EdgeInsets.only(top: 15, left: 4, right: 4),
  this.digitInnerMargin = const EdgeInsets.all(24),
  this.primaryColor = Colors.white,
  this.digitFillColor = Colors.transparent,
  this.digitTextStyle = const TextStyle(fontSize: 30, color: Colors.white),
  this.deleteButtonTextStyle = const TextStyle(fontSize: 16, color: Colors.white),
  this.keyboardSize,
});

What's the equal replacement for digitSize? Is it keyboardSize or digitTextStyle?

Wrong position of filled circles

When I use a visible (not transparent) fill color for the keyboard circles, the filled circles are drawn at wrong positions. The circle borders are not at the edges of the circle fills and some of the filled circles (different digits depending on the keyboard size) are cut off on the tops.

I use the widget as a child in a SimpleDialog and it looks like this:

          Container(
            height: 400,
            width: 300,
            child: PasscodeScreen(
              title: Container(),
              backgroundColor: Colors.white,
              circleUIConfig: CircleUIConfig(
                borderColor: Colors.grey[800],
                fillColor: Colors.grey[800],
              ),
              keyboardUIConfig: KeyboardUIConfig(
                digitTextStyle: const TextStyle(
                  color: Colors.black,
                  fontSize: 25,
                ),
                primaryColor: Colors.white,
                digitFillColor: Colors.grey,
                keyboardSize: Size(220, 320),
              ),
              cancelButton: Container(height: 0, width: 0,),
              deleteButton: Icon(Icons.backspace),
              passwordDigits: 4,
              passwordEnteredCallback: _onPinEntered,
              shouldTriggerVerification: _pinVerificationNotifier.stream,
            ),
          ),

I suggest using the digitFillColor as the color of the BoxDecoration rather than the color of the Material.

Missing shake animation from readme gif.

Great package, thank you. Perfect for what I needed.

I have a suggestion and that's to bring back the shake animation on a wrong password. It seemed to exist before everything got condensed into on main.dart file, but now nothing happens when the wrong passcode is entered.

Also related to this, maybe set a maximum number of tries before a lockout?

Thanks.

0 button doesn't work

Unbenannt

Hello,
when pressing on the 0 button, nothing happens. All the other numberfields work, only the buttom one doesn't. Can somebody help me ?

Feature request: just providing widgets for customizations (The Flutter way)

First off thanks for this awesome library!

I feel the API is not flexible enough for me to customize. I would suggest just provide a widget for the header, it's up to the implementer to provide either a "Text('Enter your point') with different styles" or something more creative.

The same goes to the face of the buttons. You can open up to 9 digits and 1 for the cancel button to either provide just Text or something else. For example, I would like to have an Icon instead of "Cancel" text. Also, the face text can be customized say for non-arabic numerals.

How can I solve this problem when I import the project

Because example depends on passcode_screen from path which doesn't exist (could not find package passcode_screen at "....\passcode_screen"), version solving failed.
pub get failed (66; Because example depends on passcode_screen from path which doesn't exist (could not find package passcode_screen at "....\passcode_screen"), version solving failed.)

Documentation is outdated

cancelLocalizedText has been replaced with cancelButton, same for delete

The documentation as it is does not compile

Layout is wrong in small screen devices

The passcode screen looks wrong (see at the cancel button and the title in the attached screenshot) and sometimes even bottom overflows on small screen device (e.g Nexus one) a specially when using the bottomWidget parameter (fingerprint icon in the attached screenshot).

Screenshot_Nexus1passcode

What does bottomWidget do?

I'm trying to implement a lockscreen and I'm not sure what bottomwidget does. I tried adding a button but the ontap event simply triggers the delete/cancel button. Looked through the source code and I'm not entirely sure. Thanks in advance!

Give a child option for 'Forgot passcode'

People forget passcodes sometimes and and therefore there should be a child widget that could be positioned at the bottom of the screen for ('Forgot the password?') kind of Widget.

It would make this aesthatically beautiful Widget more pragmatic.

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.