Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #2713 #2714

Open
wants to merge 4 commits into
base: development
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed #2713 Adjusted status bar to dynamically follow the app's theme…
…, ensuring consistency between the UI and the status bar.
  • Loading branch information
yashc18 committed Oct 5, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 561e88ba057774133a8a5537433da269fa1edfdb
3 changes: 1 addition & 2 deletions androidApp/src/main/kotlin/org/mifos/mobile/ui/MifosApp.kt
Original file line number Diff line number Diff line change
@@ -32,7 +32,6 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.semantics.semantics
import androidx.compose.ui.semantics.testTagsAsResourceId
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import com.google.accompanist.systemuicontroller.rememberSystemUiController
import org.mifos.mobile.R
@@ -73,7 +72,7 @@ fun MifosApp(

Scaffold(
modifier = Modifier.semantics {
testTagsAsResourceId = true
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keep as it is, useful for testing


},
containerColor = Color.Transparent,
contentColor = MaterialTheme.colorScheme.onBackground,