-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from mediocre9/development
development
- Loading branch information
Showing
39 changed files
with
522 additions
and
706 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,3 +50,6 @@ linux/ | |
macos/ | ||
web/ | ||
ios/ | ||
|
||
# remove firebase options | ||
firebase_options.dart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export 'colors/app_colors.dart'; | ||
export 'router/app_routes.dart'; | ||
export 'strings/app_strings.dart'; | ||
export 'router/routes.dart'; | ||
export 'strings/strings.dart'; | ||
export 'theme/app_theme.dart'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class Routes { | ||
Routes._(); | ||
static const String auth = '/'; | ||
static const String bluetoothHome = '/bluetoothHome'; | ||
static const String bluetoothRemote = '/bluetoothRemote'; | ||
static const String wifiHome = '/wifiHome'; | ||
static const String wifiRemote = '/wifiRemote'; | ||
static const String biometric = '/biometric'; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
class Strings { | ||
Strings._(); | ||
|
||
static const String appName = 'Smart Link'; | ||
static const String appVersion = 'v0.5.2'; | ||
static const String appDescription = 'IoT Remote Control'; | ||
static const String appLogo = 'assets/images/logo.png'; | ||
static const String bluetoothOnHomeDescription = 'Scan for bluetooth devices'; | ||
static const String bluetoothDiscoveryDescription = | ||
'This may take a few moments to discover nearby devices. Please be patient!'; | ||
static const String noInternet = 'No Internet Connection!'; | ||
static const String bluetoothOff = 'Bluetooth service is off.'; | ||
static const String devicesNotInRange = | ||
'No nearby device(s) available. Try Again!'; | ||
static const String copyright = | ||
'(c) Copyright 2023 CUSIT IT & Robotics Engineering Society. All rights reserved.'; | ||
|
||
static const String biometricLock = "Locked out due to too many attempts!"; | ||
static const String biometricPermanent = | ||
"Locked out permanently due to too many attempts!"; | ||
static const String biometricEnrollment = | ||
"Please register your fingerprint from your device settings!"; | ||
static const String biometricNotSupported = | ||
"Your device does not have fingerprint support!"; | ||
static const String microControllerIp = "192.168.4.1"; | ||
|
||
static const String userBlocked = 'Your account has been blocked.'; | ||
static const String googleLogoPath = 'assets/images/google_logo.png'; | ||
static const String radarAnimationPath = 'assets/animations/radar.json'; | ||
static const String signinButtonText = 'Sign in with Google'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.