-
Notifications
You must be signed in to change notification settings - Fork 1
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
#54-Subheader component #61
Merged
Merged
Changes from 3 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
a554623
#54-Subheader-Component creation
tGiech22 d7816ac
#54-Subheader-Component saving changes and cleaning branch
tGiech22 075b28a
Merge branch 'Subheader-Component' of https://github.com/Northeastern…
tGiech22 d73a1e5
#54-Subheader-Component
tGiech22 69789e3
#54 changed color of ValueText
tGiech22 2a62138
#54 reverting ValueText back to original form
tGiech22 7d3e154
removed NERO.qmlproject.qtds file
tGiech22 92e7db2
#54 reverting change to CMakeLists
tGiech22 a55518d
Reverting back to original commit
tGiech22 0a78fa4
#54 changing Label Text color
tGiech22 e108ca4
Reverting changes back to original
tGiech22 f7eb8d3
Revert "Reverting back to original commit"
tGiech22 9d1412b
Revert "#54 reverting change to CMakeLists"
tGiech22 89b5ff4
Revert "removed NERO.qmlproject.qtds file"
tGiech22 45d3e0a
Revert "#54 reverting ValueText back to original form"
tGiech22 8266fbc
Revert "#54 changed color of ValueText"
tGiech22 c434e2b
Revert "#54-Subheader-Component"
tGiech22 14ba575
Revert "#54-Subheader-Component saving changes and cleaning branch"
tGiech22 f292267
Revert "#54-Subheader-Component creation"
tGiech22 d752f0e
#54 changing color of LabelText
tGiech22 dcd55a9
#54 forgot the hashtags for the color
tGiech22 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -48,7 +48,9 @@ set(PROJECT_SOURCES | |
|
||
find_package(Qt6 REQUIRED COMPONENTS Core Gui Qml Quick Network Mqtt) | ||
|
||
qt_add_executable(NEROApp ${PROJECT_SOURCES}) | ||
qt_add_executable(NEROApp ${PROJECT_SOURCES} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. revert this change |
||
|
||
) | ||
|
||
qt_add_resources(NEROApp "configuration" | ||
PREFIX "/" | ||
|
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,26 @@ | ||
import QtQuick 2.15 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. delete entire file |
||
import QtQuick.Controls 2.15 | ||
|
||
Item { | ||
width: 200 | ||
height: 40 | ||
property string InputText: "CHARGE STATE" | ||
Peyton-McKee marked this conversation as resolved.
Show resolved
Hide resolved
|
||
property FontLoader applicationFont: FontLoader { | ||
Peyton-McKee marked this conversation as resolved.
Show resolved
Hide resolved
|
||
source: "Roboto-Black.ttf" | ||
} | ||
|
||
Text { | ||
id: text1 | ||
x: 0 | ||
Peyton-McKee marked this conversation as resolved.
Show resolved
Hide resolved
|
||
y: 0 | ||
width: parent.width | ||
height: parent.height | ||
color: "#bfbfbf" | ||
text: InputText | ||
font.pixelSize: 24 | ||
font.family: applicationFont | ||
font.bold: true | ||
} | ||
|
||
|
||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
dont include this file