-
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
Smart Watch 4 JS UI design #1
base: main
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,23 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> |
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.
.idea folder can be removed
entry/src/main/config.json
Outdated
@@ -0,0 +1,61 @@ | |||
{ | |||
"app": { | |||
"bundleName": "com.example.watch4.hmservice", |
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.
bundleName - can be more appropriate, for example - com.hmos.app.watch4 etc
@@ -0,0 +1,10 @@ | |||
package com.example.watch4; |
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.
Please add copyright details to all the new files
export default { | ||
data: { | ||
weather: "sun & windy", | ||
// cloudy, windy, partly sunny, rainy, sleeting, sun & rain, sun & windy, sunny, thunderstorm & rain, thunderstorm |
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.
UI functionality is fine, please include the api exposing functionality where in data layer need to be segregated as per the requirement.
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/caches |
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.
Please remove .idea folder
@@ -0,0 +1,8 @@ | |||
{ | |||
"strings": { | |||
"hello": "Hello", |
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.
Remove unused strings
fecthWeather : function(){ | ||
let data; | ||
fetch.fetch({ | ||
url:'https://api.openweathermap.org/data/2.5/weather?lat=16.5062&lon=80.6480&appid=9ca3abfc02f621a4fe7696f670f04a57', |
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.
Try to get current location and use that latitude and longitude values to fetch the weather
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.
Please check the comments added today
@@ -0,0 +1,16 @@ | |||
package com.hmos.app.watch4; |
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.
pls add copyright details in all new js / ets files
Screenshot of my work
If any changes are required Please Guide me.