We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0812a6d commit 8158cb2Copy full SHA for 8158cb2
1 file changed
presentation/src/main/java/com/threegap/bitnagil/presentation/intro/IntroScreen.kt
@@ -1,6 +1,7 @@
1
package com.threegap.bitnagil.presentation.intro
2
3
import androidx.compose.foundation.Image
4
+import androidx.compose.foundation.background
5
import androidx.compose.foundation.layout.Column
6
import androidx.compose.foundation.layout.Spacer
7
import androidx.compose.foundation.layout.aspectRatio
@@ -57,7 +58,9 @@ private fun IntroScreen(
57
58
59
Column(
60
horizontalAlignment = Alignment.CenterHorizontally,
- modifier = modifier.fillMaxSize(),
61
+ modifier = modifier
62
+ .fillMaxSize()
63
+ .background(BitnagilTheme.colors.white),
64
) {
65
Spacer(modifier = Modifier.height(screenHeight * 0.0748f))
66
0 commit comments