Skip to content

Commit

Permalink
Feature #10: ClickableVerticalRegionListInModalPreview 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
kamja0510 committed Nov 22, 2024
1 parent 0eb52c0 commit 707512c
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import org.sopt.cgv.core.designsystem.theme.Black
import org.sopt.cgv.core.designsystem.theme.CGVTheme
Expand Down Expand Up @@ -48,4 +49,23 @@ fun ClickableVerticalRegionListInModal(
}
}
}
}

@Preview
@Composable
private fun ClickableVerticalRegionListInModalPreview(){
ClickableVerticalRegionListInModal(
list = listOf(
"추천 CGV",
"서울(31)",
"경기",
"인천",
"강원",
"대전/충청",
"대구",
"울산/부산",
"경상",
"광주/전라/제주"
)
)
}

0 comments on commit 707512c

Please sign in to comment.