-
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.
- Loading branch information
Showing
6 changed files
with
204 additions
and
6 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
53 changes: 53 additions & 0 deletions
53
feature/upload/src/main/java/com/record/upload/CompletedUploadScreen.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,53 @@ | ||
package com.record.upload | ||
|
||
import androidx.compose.foundation.background | ||
import androidx.compose.foundation.layout.Box | ||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.foundation.layout.PaddingValues | ||
import androidx.compose.foundation.layout.fillMaxSize | ||
import androidx.compose.foundation.layout.fillMaxWidth | ||
import androidx.compose.material3.Text | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Alignment | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.text.style.TextAlign | ||
import com.record.designsystem.component.button.RecordyButton | ||
import com.record.designsystem.component.navbar.TopNavigationBar | ||
import com.record.designsystem.theme.Background | ||
import com.record.designsystem.theme.Gray03 | ||
import com.record.designsystem.theme.RecordyTheme | ||
@Composable | ||
fun CompletedUploadRoute( | ||
paddingValues: PaddingValues, | ||
){ | ||
CompletedUploadScreen() | ||
} | ||
@Composable | ||
fun CompletedUploadScreen() { | ||
Box( | ||
modifier = Modifier | ||
.fillMaxSize() | ||
.background(Background), | ||
) { | ||
Column( | ||
modifier = Modifier | ||
.align(Alignment.TopCenter), | ||
) { | ||
TopNavigationBar(title = "영상 선택", enableGradation = true) | ||
Text( | ||
text = "ⓘ 최대 1분의 1080p 영상을 올려주세요.4", | ||
color = Gray03, | ||
style = RecordyTheme.typography.caption2, | ||
maxLines = 1, | ||
modifier = Modifier.fillMaxWidth(), | ||
textAlign = TextAlign.Center, | ||
) | ||
} | ||
RecordyButton( | ||
modifier = Modifier.align(Alignment.BottomCenter), | ||
text = "다음", | ||
enabled = true, | ||
onClick = { /*TODO*/ }, | ||
) | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
feature/upload/src/main/java/com/record/upload/DefinedContentScreen.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,54 @@ | ||
package com.record.upload | ||
|
||
import androidx.compose.foundation.background | ||
import androidx.compose.foundation.layout.Box | ||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.foundation.layout.PaddingValues | ||
import androidx.compose.foundation.layout.fillMaxSize | ||
import androidx.compose.foundation.layout.fillMaxWidth | ||
import androidx.compose.material3.Text | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Alignment | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.text.style.TextAlign | ||
import com.record.designsystem.component.button.RecordyButton | ||
import com.record.designsystem.component.navbar.TopNavigationBar | ||
import com.record.designsystem.theme.Background | ||
import com.record.designsystem.theme.Gray03 | ||
import com.record.designsystem.theme.RecordyTheme | ||
@Composable | ||
fun DefinedContentRoute( | ||
paddingValues: PaddingValues, | ||
navigateCompletedUpload: () -> Unit, | ||
){ | ||
DefinedContentScreen() | ||
} | ||
@Composable | ||
fun DefinedContentScreen() { | ||
Box( | ||
modifier = Modifier | ||
.fillMaxSize() | ||
.background(Background), | ||
) { | ||
Column( | ||
modifier = Modifier | ||
.align(Alignment.TopCenter), | ||
) { | ||
TopNavigationBar(title = "영상 선택", enableGradation = true) | ||
Text( | ||
text = "ⓘ 최대 1분의 1080p 영상을 올려주세요.2", | ||
color = Gray03, | ||
style = RecordyTheme.typography.caption2, | ||
maxLines = 1, | ||
modifier = Modifier.fillMaxWidth(), | ||
textAlign = TextAlign.Center, | ||
) | ||
} | ||
RecordyButton( | ||
modifier = Modifier.align(Alignment.BottomCenter), | ||
text = "다음", | ||
enabled = true, | ||
onClick = { /*TODO*/ }, | ||
) | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
feature/upload/src/main/java/com/record/upload/SelectedKeywordScreen.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,54 @@ | ||
package com.record.upload | ||
|
||
import androidx.compose.foundation.background | ||
import androidx.compose.foundation.layout.Box | ||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.foundation.layout.PaddingValues | ||
import androidx.compose.foundation.layout.fillMaxSize | ||
import androidx.compose.foundation.layout.fillMaxWidth | ||
import androidx.compose.material3.Text | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Alignment | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.text.style.TextAlign | ||
import com.record.designsystem.component.button.RecordyButton | ||
import com.record.designsystem.component.navbar.TopNavigationBar | ||
import com.record.designsystem.theme.Background | ||
import com.record.designsystem.theme.Gray03 | ||
import com.record.designsystem.theme.RecordyTheme | ||
@Composable | ||
fun SelectedKeywordRoute( | ||
paddingValues: PaddingValues, | ||
navigateDefinedContent: () -> Unit, | ||
){ | ||
SelectedKeywordScreen() | ||
} | ||
@Composable | ||
fun SelectedKeywordScreen() { | ||
Box( | ||
modifier = Modifier | ||
.fillMaxSize() | ||
.background(Background), | ||
) { | ||
Column( | ||
modifier = Modifier | ||
.align(Alignment.TopCenter), | ||
) { | ||
TopNavigationBar(title = "영상 선택", enableGradation = true) | ||
Text( | ||
text = "ⓘ 최대 1분의 1080p 영상을 올려주세요.1", | ||
color = Gray03, | ||
style = RecordyTheme.typography.caption2, | ||
maxLines = 1, | ||
modifier = Modifier.fillMaxWidth(), | ||
textAlign = TextAlign.Center, | ||
) | ||
} | ||
RecordyButton( | ||
modifier = Modifier.align(Alignment.BottomCenter), | ||
text = "다음", | ||
enabled = true, | ||
onClick = { /*TODO*/ }, | ||
) | ||
} | ||
} |
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