-
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.
Rework user interface, including all sliders (#23)
* Sliders are improved to also include a text field where possible so that the user may choose to use the slider or use the text field. * Material colors used throughout the app. * Spacing between each section when editing art.
- Loading branch information
1 parent
667af89
commit c329ae9
Showing
73 changed files
with
1,564 additions
and
1,595 deletions.
There are no files selected for viewing
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
4 changes: 2 additions & 2 deletions
4
app/src/main/java/com/activityartapp/domain/useCase/version/GetVersionFromRemote.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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package com.activityartapp.domain.useCase.version | ||
|
||
import com.activityartapp.BuildConfig | ||
import com.activityartapp.domain.repository.VersionRepository | ||
import com.activityartapp.domain.models.Version | ||
import com.activityartapp.util.Response | ||
import com.activityartapp.util.constants.StringConstants.APP_VERSION | ||
import javax.inject.Inject | ||
|
||
/** Determines whether the currently-installed [Version] of the client application | ||
* is the latest and if it is supported. **/ | ||
class GetVersionFromRemote @Inject constructor(private val versionRepository: VersionRepository) { | ||
suspend operator fun invoke(): Response<Version> { | ||
return versionRepository.getVersion(APP_VERSION) | ||
return versionRepository.getVersion(BuildConfig.VERSION_NAME) | ||
} | ||
} |
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
32 changes: 0 additions & 32 deletions
32
app/src/main/java/com/activityartapp/presentation/common/CardColumn.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.