Skip to content

Commit

Permalink
UI #7 : remove unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tunaunnie committed Nov 20, 2024
1 parent 30ec1d3 commit 53de586
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
package org.sopt.cgv.core.designsystem.component.button

import android.R
import android.widget.Button
import androidx.compose.foundation.BorderStroke
import androidx.compose.foundation.background
import androidx.compose.foundation.border
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
Expand All @@ -17,7 +14,6 @@ import androidx.compose.foundation.layout.size
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.ComposeCompilerApi
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
Expand All @@ -27,9 +23,7 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.Dp
import androidx.compose.ui.unit.dp
import org.sopt.cgv.core.designsystem.theme.Gray200
import org.sopt.cgv.core.designsystem.theme.PrimaryRed400
import org.sopt.cgv.core.designsystem.theme.White

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
Expand Down
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/ic_seats_minus.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="20dp"
android:height="20dp"
android:viewportWidth="20"
android:viewportHeight="20">
<path
android:strokeWidth="1"
android:pathData="M6,10H14"
android:fillColor="#00000000"
android:strokeColor="#444444"
android:strokeLineCap="round"/>
</vector>
18 changes: 18 additions & 0 deletions app/src/main/res/drawable/ic_seats_plus.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="20dp"
android:height="20dp"
android:viewportWidth="20"
android:viewportHeight="20">
<path
android:strokeWidth="1"
android:pathData="M6,10H14"
android:fillColor="#00000000"
android:strokeColor="#444444"
android:strokeLineCap="round"/>
<path
android:strokeWidth="1"
android:pathData="M10,6L10,14"
android:fillColor="#00000000"
android:strokeColor="#444444"
android:strokeLineCap="round"/>
</vector>
57 changes: 57 additions & 0 deletions app/src/main/res/drawable/ic_time_sun.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="16dp"
android:height="16dp"
android:viewportWidth="16"
android:viewportHeight="16">
<path
android:pathData="M5.577,8a2.424,2.424 0,1 0,4.848 0a2.424,2.424 0,1 0,-4.848 0z"
android:fillColor="#666666"/>
<path
android:strokeWidth="1"
android:pathData="M8,2.667V4.121"
android:fillColor="#00000000"
android:strokeColor="#666666"
android:strokeLineCap="round"/>
<path
android:strokeWidth="1"
android:pathData="M8,11.878V13.333"
android:fillColor="#00000000"
android:strokeColor="#666666"
android:strokeLineCap="round"/>
<path
android:strokeWidth="1"
android:pathData="M2.667,8H4.121"
android:fillColor="#00000000"
android:strokeColor="#666666"
android:strokeLineCap="round"/>
<path
android:strokeWidth="1"
android:pathData="M11.879,8H13.333"
android:fillColor="#00000000"
android:strokeColor="#666666"
android:strokeLineCap="round"/>
<path
android:strokeWidth="1"
android:pathData="M4.228,4.229L5.256,5.257"
android:fillColor="#00000000"
android:strokeColor="#666666"
android:strokeLineCap="round"/>
<path
android:strokeWidth="1"
android:pathData="M10.744,10.742L11.772,11.771"
android:fillColor="#00000000"
android:strokeColor="#666666"
android:strokeLineCap="round"/>
<path
android:strokeWidth="1"
android:pathData="M11.77,4.229L10.741,5.257"
android:fillColor="#00000000"
android:strokeColor="#666666"
android:strokeLineCap="round"/>
<path
android:strokeWidth="1"
android:pathData="M5.254,10.742L4.226,11.771"
android:fillColor="#00000000"
android:strokeColor="#666666"
android:strokeLineCap="round"/>
</vector>

0 comments on commit 53de586

Please sign in to comment.