@@ -9,7 +9,6 @@ import androidx.compose.runtime.Composable
99import androidx.compose.runtime.rememberCoroutineScope
1010import androidx.compose.ui.Modifier
1111import androidx.compose.ui.draw.drawWithContent
12- import androidx.compose.ui.graphics.layer.GraphicsLayer
1312import androidx.compose.ui.graphics.layer.drawLayer
1413import androidx.compose.ui.graphics.rememberGraphicsLayer
1514import androidx.compose.ui.text.font.FontWeight
@@ -24,6 +23,7 @@ import com.foke.together.domain.interactor.entity.FramePosition
2423import com.foke.together.presenter.frame.FourCutFrame
2524import com.foke.together.presenter.frame.MakerFaireFrame
2625import com.foke.together.presenter.theme.FourCutTogetherTheme
26+ import com.foke.together.presenter.theme.mediumContrastDarkColorScheme
2727import com.foke.together.presenter.theme.mediumContrastLightColorScheme
2828import com.foke.together.presenter.viewmodel.GenerateTwoRowImageViewModel
2929import com.foke.together.util.AppLog
@@ -97,7 +97,7 @@ fun GetFrame(
9797 cutFrameType : Int ,
9898 imageUri : List <Uri >,
9999 position : FramePosition ? = null
100- ): Unit {
100+ ) {
101101 when (cutFrameType) {
102102 CutFrameType .MAKER_FAIRE .ordinal -> MakerFaireFrame (
103103 cameraImageUrlList = imageUri,
@@ -111,7 +111,7 @@ fun GetFrame(
111111 )
112112
113113 CutFrameType .FOURCUT_DARK .ordinal -> FourCutFrame (
114- designColorScheme = mediumContrastLightColorScheme ,
114+ designColorScheme = mediumContrastDarkColorScheme ,
115115 cameraImageUrlList = imageUri,
116116 position = position
117117 )
0 commit comments