File tree Expand file tree Collapse file tree
presentation/src/main/java/com/threegap/bitnagil/presentation/intro Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package com.threegap.bitnagil.presentation.intro
2+
3+ import androidx.compose.foundation.background
4+ import androidx.compose.foundation.layout.Column
5+ import androidx.compose.foundation.layout.fillMaxSize
6+ import androidx.compose.material3.Text
7+ import androidx.compose.runtime.Composable
8+ import androidx.compose.ui.Modifier
9+ import androidx.compose.ui.graphics.Color
10+ import androidx.compose.ui.tooling.preview.Preview
11+
12+ @Composable
13+ fun IntroScreenContainer () {
14+ IntroScreen ()
15+ }
16+
17+ @Composable
18+ private fun IntroScreen (modifier : Modifier = Modifier ) {
19+ Column (
20+ modifier = modifier
21+ .fillMaxSize()
22+ .background(Color .White ),
23+ ) {
24+ Text (" 인트로 화면" )
25+ }
26+ }
27+
28+ @Preview
29+ @Composable
30+ private fun IntroScreenPreview () {
31+ IntroScreen ()
32+ }
You can’t perform that action at this time.
0 commit comments