Skip to content

Commit

Permalink
Merge pull request #49 from Team-B1ND/feature/1.3.3
Browse files Browse the repository at this point in the history
Release 1.3.3
  • Loading branch information
8954sood authored Dec 16, 2024
2 parents caa6b38 + 57eca32 commit 86a6923
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![version](https://img.shields.io/badge/version-1.3.2-blue)
![version](https://img.shields.io/badge/version-1.3.3-blue)

## How to use?
in your project
Expand Down
8 changes: 8 additions & 0 deletions app/src/main/java/com/b1nd/dodam/designsystem/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ import com.b1nd.dodam.designsystem.component.DodamCircularProgressIndicator
import com.b1nd.dodam.designsystem.component.DodamFilledTextField
import com.b1nd.dodam.designsystem.component.DodamLinerProgressIndicator
import com.b1nd.dodam.designsystem.component.DodamTextField
import com.b1nd.dodam.designsystem.component.DodamTopAppBar
import com.b1nd.dodam.designsystem.component.TopAppBarType
import com.b1nd.dodam.designsystem.foundation.DodamIcons

@ExperimentalMaterial3Api
Expand All @@ -44,6 +46,12 @@ class MainActivity : ComponentActivity() {
Column(
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
DodamTopAppBar(
title = "‘B1ND’ 그룹\n" +
"가입 신청 대기 중인 멤버",
onBackClick = {},
type = TopAppBarType.Large
)
DodamTextField(
modifier = Modifier.weight(1f),
value = value,
Expand Down
2 changes: 1 addition & 1 deletion dodam-design-system/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ mavenPublishing {
coordinates(
groupId = "com.b1nd.dodam",
artifactId = "dodam-design-system",
version = "1.3.2"
version = "1.3.3"
)

pom {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import androidx.compose.runtime.Immutable
import androidx.compose.runtime.Stable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.compose.ui.util.fastForEach
import com.b1nd.dodam.designsystem.DodamTheme
Expand Down Expand Up @@ -77,8 +78,10 @@ fun DodamTopAppBar(
icon = DodamIcons.ArrowLeft,
type = IconButtonType.Strong,
)
Spacer(modifier = Modifier.height(40.dp))
Row {
Row(
modifier = Modifier.height(80.dp),
verticalAlignment = Alignment.Bottom
) {
Spacer(modifier = Modifier.width(TopAppBarDefaults.TitleStartSpacing))
Text(
text = title,
Expand Down

0 comments on commit 86a6923

Please sign in to comment.