-
Notifications
You must be signed in to change notification settings - Fork 2
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 #84 from javadjafari1/21-implement-the-about-us-sc…
…reen 21 implement the about us screen
- Loading branch information
Showing
13 changed files
with
432 additions
and
3 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
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
16 changes: 16 additions & 0 deletions
16
app/src/main/java/ir/thatsmejavad/backgroundable/model/Contributor.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,16 @@ | ||
package ir.thatsmejavad.backgroundable.model | ||
|
||
import androidx.annotation.DrawableRes | ||
|
||
data class Contributor( | ||
val name: String, | ||
val position: String, | ||
@DrawableRes val image: Int, | ||
val links: List<ContributorLink> | ||
) | ||
|
||
data class ContributorLink( | ||
@DrawableRes val icon: Int, | ||
val url: String, | ||
val name: String | ||
) |
Oops, something went wrong.