-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v1.0.2] Upgrade version to 1.0.2(#3)
- Loading branch information
1 parent
73864f1
commit ee802f6
Showing
33 changed files
with
600 additions
and
197 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## ✏️ TODO | ||
*(List your doing in your pull request here)* | ||
|
||
- Feature one. | ||
- Feature two. | ||
|
||
## 📘 Libraries | ||
*(List your libraries that you add or modifier in your pull request)* | ||
|
||
- Jetpack Compose. | ||
- Jetpack DataStore. | ||
|
||
## 🔔 Notes | ||
*(You must provides some information such as how to testing your pull request because this is important for your reviewer to check your pull request)* | ||
|
||
- Delete the project because it's suck. :smile: | ||
|
||
## 📷 Screenshots | ||
*(Add some screenshots in here)* |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
3 changes: 0 additions & 3 deletions
3
app/src/main/java/com/minhdtm/example/weapose/presentation/base/Event.kt
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
17 changes: 17 additions & 0 deletions
17
.../java/com/minhdtm/example/weapose/presentation/model/factory/DayWeatherViewDataFactory.kt
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,17 @@ | ||
package com.minhdtm.example.weapose.presentation.model.factory | ||
|
||
import com.minhdtm.example.weapose.R | ||
import com.minhdtm.example.weapose.presentation.model.DayWeatherViewData | ||
|
||
fun previewDayWeatherViewData() = DayWeatherViewData( | ||
dateTime = "Saturday, Jan 1", | ||
weatherDetail = "Rain", | ||
icon = R.drawable.ic_rain, | ||
maxTemp = 40.0, | ||
minTemp = 30.0, | ||
humidity = 80, | ||
sunset = "06:00", | ||
sunrise = "17:00", | ||
uvIndex = 8.0, | ||
windSpeed = "10", | ||
) |
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.