Skip to content

Commit

Permalink
Merge pull request #208 from tarkalabs/nilesh/textrow
Browse files Browse the repository at this point in the history
Fixed padding issue in TUITextRow
  • Loading branch information
rajajawahar authored Mar 1, 2024
2 parents 1f4b7ad + 52597b8 commit 992afae
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 26 deletions.
2 changes: 1 addition & 1 deletion tarka-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ publishing {
run {
groupId = "com.tarkalabs"
artifactId = getLibraryArtifactId()
version = "1.1.4"
version = "1.1.5"
artifact("$buildDir/outputs/aar/tarka-ui-release.aar")
}
}
Expand Down
50 changes: 25 additions & 25 deletions tarka-ui/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@ kotlin.code.style=official
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

SONATYPE_HOST=DEFAULT

RELEASE_SIGNING_ENABLED=true


GROUP=com.tarkalabs
POM_ARTIFACT_ID=tarkaui
VERSION_NAME=1.1.0

POM_NAME=Tarka UIKit
POM_DESCRIPTION=An Tarka UIKit Component Library.
POM_INCEPTION_YEAR=2024
POM_URL=https://github.com/tarkalabs/tarka-ui-kit-android

POM_LICENSE_NAME=MIT License
POM_LICENSE_URL=https://opensource.org/licenses/MIT
POM_LICENSE_DIST=repo

POM_SCM_URL=https://github.com/tarkalabs/tarka-ui-kit-android
POM_SCM_CONNECTION=scm:git:git://github.com/tarkalabs/tarka-ui-kit-android
POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/tarkalabs/tarka-ui-kit-android

POM_DEVELOPER_ID=rajajawahar
POM_DEVELOPER_NAME=Raja Jawahar
POM_DEVELOPER_URL=https://github.com/rajajawahar
#SONATYPE_HOST=DEFAULT

#RELEASE_SIGNING_ENABLED=true
#
#
#GROUP=com.tarkalabs
#POM_ARTIFACT_ID=tarkaui
#VERSION_NAME=1.1.0
#
#POM_NAME=Tarka UIKit
#POM_DESCRIPTION=An Tarka UIKit Component Library.
#POM_INCEPTION_YEAR=2024
#POM_URL=https://github.com/tarkalabs/tarka-ui-kit-android
#
#POM_LICENSE_NAME=MIT License
#POM_LICENSE_URL=https://opensource.org/licenses/MIT
#POM_LICENSE_DIST=repo
#
#POM_SCM_URL=https://github.com/tarkalabs/tarka-ui-kit-android
#POM_SCM_CONNECTION=scm:git:git://github.com/tarkalabs/tarka-ui-kit-android
#POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/tarkalabs/tarka-ui-kit-android
#
#POM_DEVELOPER_ID=rajajawahar
#POM_DEVELOPER_NAME=Raja Jawahar
#POM_DEVELOPER_URL=https://github.com/rajajawahar
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ private fun TUITextRowTitle(title: String) {
style = TUITheme.typography.body8,
color = TUITheme.colors.onSurface.copy(alpha = 0.7f)
)
VerticalSpacer(space = 4)
Text(
text = style.description, style = TUITheme.typography.body7, color = TUITheme.colors.onSurface
)
Expand All @@ -293,6 +294,7 @@ private fun TUITextRowTitle(title: String) {
style = TUITheme.typography.body8,
color = TUITheme.colors.onSurface.copy(alpha = 0.7f)
)
VerticalSpacer(space = 4)
Text(
text = style.text,
style = TUITheme.typography.body7,
Expand Down

0 comments on commit 992afae

Please sign in to comment.