Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Spell check, 80-char lint rule, and .gitignore file names addition #127

Merged
merged 3 commits into from
Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 39 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,46 @@
# Miscellaneous
# Some common .gitignore configurations that GitHub will never use #
# from https://gist.github.com/octocat/9257657 #
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Miscellaneous
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
},
"onboardingNotifAutostartSetting": "Open Settings",
"onboardingFinish": "Alhamdulillah. All set",
"onboardingFinishDesc": "Welcome abroad. Do explore other features and tweak other settings as well.",
"onboardingFinishDesc": "Welcome aboard. Do explore other features and tweak other settings as well.",
"onboardingDone": "Done",
"onboardingNext": "Next",
"zoneUpdatedToast": "Location updated",
Expand Down
3 changes: 2 additions & 1 deletion lib/views/ZoneChooser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ class LocationChooser {
static void onNewLocationSaved(BuildContext context) {
GetStorage().write(
kShouldUpdateNotif, true); //if zone changes, update the notification
//this setState will be called when user select a new location, this will update the Text short code
//this setState will be called when user select a new location, this will
//update the Text short code
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
behavior: SnackBarBehavior.floating,
Expand Down