-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from THT-Team/develop
QA: Location Patch Fail Debug 버전
- Loading branch information
Showing
25 changed files
with
549 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
feature/tohot/src/main/java/tht/feature/tohot/component/card/ToHotNoneInitialUserCard.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package tht.feature.tohot.component.card | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.res.painterResource | ||
import androidx.compose.ui.res.stringResource | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import tht.feature.tohot.R | ||
|
||
/** | ||
* 처음 주제어를 선택 시 유저가 없는 경우 | ||
* - 기다리는 무디 조회 버튼 | ||
*/ | ||
@Composable | ||
fun ToHotNoneInitialUserCard( | ||
modifier: Modifier = Modifier, | ||
onClick: () -> Unit = { } | ||
) { | ||
ToHotNotifyCard( | ||
modifier = modifier, | ||
image = painterResource(id = R.drawable.ic_mudy_none_initial_user), | ||
title = stringResource(id = R.string.to_hot_none_initial_user_card_title), | ||
description = stringResource(id = R.string.to_hot_none_initial_user_card_description), | ||
buttonText = stringResource(id = R.string.waiting), | ||
onClick = onClick | ||
) | ||
} | ||
|
||
@Composable | ||
@Preview | ||
private fun ToHotNoneInitialUserCardPreview() { | ||
ToHotNoneInitialUserCard() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
feature/tohot/src/main/java/tht/feature/tohot/component/card/ToHotQuerySuccessCard.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package tht.feature.tohot.component.card | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.res.painterResource | ||
import androidx.compose.ui.res.stringResource | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import tht.feature.tohot.R | ||
|
||
@Composable | ||
fun ToHotQuerySuccessCard( | ||
modifier: Modifier = Modifier, | ||
onClick: () -> Unit = { } | ||
) { | ||
ToHotNotifyCard( | ||
modifier = modifier, | ||
image = painterResource(id = R.drawable.ic_mudy_query_success), | ||
title = stringResource(id = R.string.to_hot_query_success_card_title), | ||
description = stringResource(id = R.string.to_hot_query_success_card_description), | ||
buttonText = stringResource(id = R.string.starting), | ||
onClick = onClick | ||
) | ||
} | ||
|
||
@Composable | ||
@Preview | ||
private fun ToHotQuerySuccessCardPreview() { | ||
ToHotQuerySuccessCard() | ||
} |
Oops, something went wrong.