File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
dev-app/src/main/java/com/uid2/dev Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ import android.os.Bundle
44import androidx.activity.ComponentActivity
55import androidx.activity.compose.setContent
66import androidx.activity.viewModels
7+ import androidx.compose.foundation.layout.Box
8+ import androidx.compose.foundation.layout.safeDrawingPadding
79import androidx.compose.material.MaterialTheme
10+ import androidx.compose.ui.Modifier
811import com.uid2.EUIDManager
912import com.uid2.UID2Manager
1013import com.uid2.dev.network.AppUID2Client
@@ -34,8 +37,11 @@ class MainActivity : ComponentActivity() {
3437 }
3538
3639 setContent {
37- MaterialTheme {
38- MainScreen (viewModel)
40+ Box (Modifier .safeDrawingPadding()) {
41+ // the rest of the app
42+ MaterialTheme {
43+ MainScreen (viewModel)
44+ }
3945 }
4046 }
4147 }
You can’t perform that action at this time.
0 commit comments