-
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 #27 from PawWithU/feature/notice_detail
feature/notice_detail: 이동봉사 공고 상세 화면, 이동봉사 신청 ui 구현
- Loading branch information
Showing
29 changed files
with
1,049 additions
and
26 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Binary file modified
BIN
+0 Bytes
(100%)
...ms/connectdog/core/designsystem/component/ComposableSingletons$ContentKt$lambda-1$1.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...g/com/kusitms/connectdog/core/designsystem/component/ComposableSingletons$ContentKt.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...p/kotlin-classes/debug/com/kusitms/connectdog/core/designsystem/component/ContentKt.class
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
...ses/debug/com/kusitms/connectdog/core/designsystem/component/LiveLiterals$ContentKt.class
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
...ebug/com/kusitms/connectdog/core/designsystem/component/LiveLiterals$NetworkImageKt.class
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
...m/kusitms/connectdog/core/designsystem/component/LiveLiterals$ReviewRecentContentKt.class
Binary file not shown.
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
41 changes: 41 additions & 0 deletions
41
core/designsystem/src/main/java/com/kusitms/connectdog/core/designsystem/component/Tag.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,41 @@ | ||
package com.kusitms.connectdog.core.designsystem.component | ||
|
||
import androidx.compose.foundation.background | ||
import androidx.compose.foundation.layout.padding | ||
import androidx.compose.foundation.shape.RoundedCornerShape | ||
import androidx.compose.material3.MaterialTheme | ||
import androidx.compose.material3.Text | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.graphics.Color | ||
import androidx.compose.ui.text.font.FontWeight | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import androidx.compose.ui.unit.dp | ||
import com.kusitms.connectdog.core.designsystem.theme.ConnectDogTheme | ||
|
||
@Composable | ||
fun ConnectDogTag( | ||
text: String, | ||
color: Color = MaterialTheme.colorScheme.primary | ||
) { | ||
Text( | ||
text = text, | ||
style = MaterialTheme.typography.labelMedium, | ||
fontWeight = FontWeight.SemiBold, | ||
color = color, | ||
modifier = Modifier | ||
.background( | ||
shape = RoundedCornerShape(4.dp), | ||
color = MaterialTheme.colorScheme.primaryContainer | ||
) | ||
.padding(horizontal = 7.dp, vertical = 2.dp) | ||
) | ||
} | ||
|
||
@Composable | ||
@Preview | ||
fun test() { | ||
ConnectDogTheme { | ||
ConnectDogTag(text = "모집중") | ||
} | ||
} |
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
Binary file modified
BIN
+0 Bytes
(100%)
core/model/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i
Binary file not shown.
Empty file removed
0
core/model/build/reports/ktlint/ktlintKotlinScriptCheck/ktlintKotlinScriptCheck.txt
Empty file.
Empty file.
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
Oops, something went wrong.