Skip to content

Commit

Permalink
[FIX/#180] 바텀시트 주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Aug 18, 2024
1 parent 2d44dfc commit 8cc7979
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@ import com.terning.core.designsystem.component.button.RoundButton
import com.terning.core.designsystem.theme.TerningTheme
import kotlinx.coroutines.launch

/**
* 로그아웃을 할 수 있는 바텀시트입니다.
*
* 로그아웃 버튼과, 취소 버튼으로 이루어져있습니다.
*
* @param modifier 바텀시트에 적용할 Modifier입니다.
* @param onDismiss 취소 버튼 클릭 시, 바텀시트가 닫히면서 호출되는 함수입니다.
* @param onLogoutClick 로그아웃 버튼 클릭 시, 호출되는 콜백 함수입니다.
*/
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun MyPageLogoutBottomSheet(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,6 @@ import com.terning.core.designsystem.component.button.RoundButton
import com.terning.core.designsystem.theme.TerningTheme
import kotlinx.coroutines.launch

/**
* 회원탈퇴를 할 수 있는 바텀시트입니다.
*
* 회원탈퇴 버튼과, 취소 버튼으로 이루어져있습니다.
*
* @param modifier 바텀시트에 적용할 Modifier입니다.
* @param onDismiss 취소 버튼 클릭 시, 바텀시트가 닫히면서 호출되는 함수입니다.
* @param onQuitClick 회원탈퇴 버튼 클릭 시, 호출되는 콜백 함수입니다.
*/
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun MyPageQuitBottomSheet(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ import com.terning.core.designsystem.theme.TerningTheme
import com.terning.core.extension.noRippleClickable
import kotlinx.coroutines.launch

/**
* 회원가입을 할 때 프로필 이미지를 선택할 수 있는 바텀시트입니다.
*
* @param modifier 바텀시트에 적용할 Modifier입니다.
* @param onDismiss 바텀시트가 닫힐 때 호출되는 콜백 함수입니다.
* @param onSaveClick 저장하기 버튼 클릭 시, 호출되는 콜백 함수입니다.
* @param initialSelectedOption 초기에 선택된 이미지를 나타내는 인덱스 값입니다.
*/
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun SignUpBottomSheet(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@ import androidx.compose.material3.rememberModalBottomSheetState
import androidx.compose.runtime.Composable
import com.terning.core.designsystem.theme.White

/**
* 기본 바텀시트 함수입니다.
*
* @param content 바텀시트에 표시할 내용을 담은 Composable 함수입니다.
* @param onDismissRequest 바텀시트가 닫히는 요청 시 호출되는 콜백 함수입니다.
* @param sheetState 바텀시트의 상태를 관리하는 SheetState 객체입니다.
*/
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun TerningBasicBottomSheet(
Expand Down

0 comments on commit 8cc7979

Please sign in to comment.