Skip to content

Commit

Permalink
Enabled by Default & Padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Animeboynz committed Sep 21, 2024
1 parent 54e6e18 commit 83d0f53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions app/src/dev/java/mihon/core/firebase/Firebase.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package mihon.core.firebase

import android.content.Context
import eu.kanade.tachiyomi.core.security.SecurityPreferences
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ internal class PermissionStep : OnboardingStep {

private var notificationGranted by mutableStateOf(false)
private var batteryGranted by mutableStateOf(false)
private var allowCrashLogs by mutableStateOf(false)
private var allowAnalytics by mutableStateOf(false)
private var allowCrashLogs by mutableStateOf(true)
private var allowAnalytics by mutableStateOf(true)

override val isComplete: Boolean = true

Expand Down Expand Up @@ -119,7 +119,7 @@ internal class PermissionStep : OnboardingStep {
)

HorizontalDivider(
modifier = Modifier.padding(vertical = 8.dp),
modifier = Modifier.padding(vertical = 8.dp, horizontal = 16.dp),
color = MaterialTheme.colorScheme.onPrimaryContainer,
)

Expand Down

0 comments on commit 83d0f53

Please sign in to comment.