Skip to content

Commit

Permalink
[ADD/#7] TextInputLayout custom style 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
chattymin committed Dec 30, 2023
1 parent eb1d47f commit 89fb554
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion presentation/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,13 @@

<style name="Theme.Doorip" parent="Base.Theme.Doorip" />

</resources>
<!-- TextInputLayout Style -->
<style name="textInputLayout_style" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<item name="boxBackgroundMode">outline</item>
<item name="boxBackgroundColor">@color/white_000</item>
<item name="boxCornerRadiusBottomEnd">6dp</item>
<item name="boxCornerRadiusBottomStart">6dp</item>
<item name="boxCornerRadiusTopEnd">6dp</item>
<item name="boxCornerRadiusTopStart">6dp</item>
</style>
</resources>

0 comments on commit 89fb554

Please sign in to comment.