Skip to content

Commit

Permalink
Switch default width back to match parent
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Corry <[email protected]>
  • Loading branch information
kylecorry31 committed Feb 8, 2025
1 parent 594e955 commit 4ccbedb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.vanniktech.maven.publish.AndroidSingleVariantLibrary
import com.vanniktech.maven.publish.SonatypeHost

val versionName = "13.1.0"
val versionName = "13.1.1"
val groupId = "com.kylecorry.andromeda"

buildscript {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ open class ViewAttributes {
var marginTop: Int = 0
var marginEnd: Int = 0
var marginBottom: Int = 0
var width: Int = ViewGroup.LayoutParams.WRAP_CONTENT
var width: Int = ViewGroup.LayoutParams.MATCH_PARENT
var height: Int = ViewGroup.LayoutParams.WRAP_CONTENT
var visibility: Int = ViewGroup.VISIBLE
var tag: String = ""
Expand Down

0 comments on commit 4ccbedb

Please sign in to comment.