-
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 #4 from mediocre9/development
major `UI` rework, refactoring and bug fixes
- Loading branch information
Showing
21 changed files
with
673 additions
and
314 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 |
---|---|---|
@@ -1,3 +1,40 @@ | ||
# remo_tooth | ||
# Remo Tooth | ||
|
||
**An application to remotely control arduino devices via bluetooth technology.** | ||
|
||
- **Version:** *0.3a* (in-progress) | ||
- **Development Stage:** alpha | ||
|
||
|
||
## How it works? | ||
|
||
**It scans for nearby beacon devices to establish connection. Then it sends on/off signals to the connected device to perform operations.** | ||
|
||
## Development Branches: | ||
- **development** (in-progress) | ||
|
||
## Development Progress: | ||
![Progress](https://progress-bar.dev/80/?title=progress) | ||
|
||
## Task-List: | ||
- [x] UI Rework | ||
- [x] UI Responsiveness | ||
- [ ] Unit Testing | ||
- [ ] Integration Testing | ||
- [ ] Regression Testing | ||
- [ ] Refactoring | ||
|
||
## Dependencies: | ||
- firebase_core: 2.4.1 | ||
- firebase_auth: 4.2.5 | ||
- google_sign_in: 5.4.3 | ||
- flutter_bloc: 8.1.1 | ||
- bloc: 8.1.0 | ||
- equatable: 2.0.5 | ||
- flutter_bluetooth_serial: 0.4.0 | ||
- connectivity_plus: 3.0.2 | ||
- lottie: 2.2.0 | ||
|
||
|
||
|
||
|
||
Under Development. |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,33 @@ | ||
// ignore_for_file: constant_identifier_names | ||
|
||
import 'package:flutter/rendering.dart'; | ||
|
||
class AppColors { | ||
AppColors._(); | ||
|
||
/// Widget colors.... | ||
static const Color PRIMARY_COLOR = Color(0xFFD4C5F6); | ||
static const Color SCAFFOLD_COLOR = Color(0xFF1C1B1F); | ||
static const Color PROGRESS_INDICATOR_COLOR = Color(0xFFD0BCFF); | ||
static const Color APP_BAR_COLOR = Color(0xFF2A2831); | ||
static const Color ELEVATED_BUTTON_COLOR = Color(0xFFBEA9EE); | ||
static const Color SNACKBAR_COLOR = Color(0xFF313033); | ||
static const Color FLOATING_BUTTON_COLOR = Color(0xFF313034); | ||
static const Color BOTTOM_SHEET_COLOR = Color(0xFF1C1B1F); | ||
static const Color CARD_COLOR = Color(0xFF25232A); | ||
static const Color CARD_BORDER_COLOR = Color(0xFF49454F); | ||
static const Color LIST_TILE_COLOR = Color(0xFF25232A); | ||
|
||
/// Text Colors.... | ||
static const Color APP_BAR_TEXT_COLOR = Color(0xFFE2D9F8); | ||
static const Color DISPLAY_MEDIUM_COLOR = Color(0xFFAC8EF0); | ||
// static const Color DISPLAY_MEDIUM_COLOR = Color(0xFF63D3CC); | ||
static const Color TITLE_SMALL_COLOR = Color(0xFFE6E1E5); | ||
static const Color TITLE_MEDIUM_COLOR = Color(0xFFE2D9F8); | ||
static const Color LABEL_SMALL_COLOR = Color(0xFF7A7A7A); | ||
static const Color LABEL_MEDIUM_COLOR = Color(0xFFB7B7B7); | ||
static const Color LABEL_LARGE_COLOR = Color(0xFFE6E1E5); | ||
static const Color ELEVATED_BUTTON_TEXT_COLOR = Color(0xFF381E72); | ||
static const Color SNACKBAR_CONTENT_COLOR = Color(0xFFF4EFF4); | ||
} |
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
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
Oops, something went wrong.