-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Password visibility toggle added #122
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The error in the GitHub Actions job for the Quiz-Genius
repository is due to a dependency conflict during the flutter pub get
step, resulting in an exit code 1. Specifically, 26 packages have newer versions that are incompatible with the current dependency constraints.
To fix this error:
- Run
flutter pub outdated
locally to identify which dependencies need updating. - Update the
pubspec.yaml
file to resolve the dependency conflicts. - Commit and push the changes, then re-run the GitHub Actions workflow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The error in the GitHub Actions job for the
Quiz-Genius
repository is due to a dependency conflict during theflutter pub get
step, resulting in an exit code 1. Specifically, 26 packages have newer versions that are incompatible with the current dependency constraints.To fix this error:
- Run
flutter pub outdated
locally to identify which dependencies need updating.- Update the
pubspec.yaml
file to resolve the dependency conflicts.- Commit and push the changes, then re-run the GitHub Actions workflow.
.
Followed all instructions and pushed changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The error in the job logs indicates that the process completed with exit code 1 during the dart run dart_style:format --dry-run --set-exit-if-changed
command. The specific files mentioned with formatting issues are lib/pages/login_page.dart
and lib/pages/signUp_page.dart
.
Steps to Fix the Error
- Check Formatting: Ensure that the files
lib/pages/login_page.dart
andlib/pages/signUp_page.dart
adhere to the Dart style guidelines. - Run Formatter:
- Run
dart format .
to auto-format the entire project. - Alternatively, run
dart format lib/pages/login_page.dart lib/pages/signUp_page.dart
to format only the specific files.
- Run
Fix Command
dart format lib/pages/login_page.dart lib/pages/signUp_page.dart
By running this command, the Dart formatter will fix the style issues in the specified files, which should resolve the error seen in the GitHub Actions job.
#108 Solved - In login and Signup page i have added password visibility button. Kindly review it. I have closed previous pr due to some reasons. Also changed 8 newer dependencies.