Skip to content

Commit

Permalink
feat: drawable 및 style 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
gaeun5744 committed Jul 15, 2024
1 parent ceb01ad commit ab5072c
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions android/app/src/main/res/drawable/rect_orange100_fill_12.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="12dp" />
<solid android:color="#FFE8D6" />
</shape>
6 changes: 6 additions & 0 deletions android/app/src/main/res/drawable/rect_orange700_fill_12.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="12dp" />
<solid android:color="#FF821E" />
</shape>
26 changes: 26 additions & 0 deletions android/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<!-- ImageView Style-->
<style name="Circle">
<item name="cornerSize">50%</item>
</style>

<style name="RoundSmall">
<item name="cornerSize">16dp</item>
</style>

<style name="RoundBig">
<item name="cornerSize">24dp</item>
</style>

<!-- Bottom sheet -->
<style name="TransparentBottomSheetDialogTheme" parent="Widget.Material3.BottomSheet">
<item name="android:background">@android:color/transparent</item>
<item name="android:colorBackground">@android:color/transparent</item>
</style>

<!-- Bold -->
<style name="Theme.AppCompat.TextView.Bold.Gray10.Size18" parent="@style/Widget.AppCompat.TextView">
<item name="android:textColor">@color/gray10</item>
Expand Down Expand Up @@ -216,6 +235,13 @@
<item name="fontFamily">@font/noto_sans_kr_regular</item>
</style>

<style name="Theme.AppCompat.TextView.Regular.White.Size14" parent="@style/Widget.AppCompat.TextView">
<item name="android:textColor">@color/white</item>
<item name="android:textSize">14dp</item>
<item name="android:includeFontPadding">false</item>
<item name="fontFamily">@font/noto_sans_kr_regular</item>
</style>


<!--Profile Edit Text-->
<style name="Theme.AppCompat.TextView.Profile.EditText.Contents" parent="@style/Widget.AppCompat.EditText">
Expand Down

0 comments on commit ab5072c

Please sign in to comment.