IMPORTANT: The file content has been truncated. Status: Showing lines 280-330 of 377 total lines. Action: To read more of the file, you can use the 'start_line' and 'end_line' parameters in a subsequent 'read_file' call. For example, to read the next section of the file, use start_line: 331. --- FILE CONTENT (truncated) --- textAlign = TextAlign.Center, ) Spacer(Modifier.height(16.dp)) Text( text = stringResource(R.string.setup_description), style = MaterialTheme.typography.bodyLarge, color = MaterialTheme.colorScheme.onSurfaceVariant, textAlign = TextAlign.Center, ) Spacer(Modifier.height(32.dp)) Button(onClick = onChooseFolder) { Text(stringResource(R.string.setup_choose_folder)) } } } @Composable internal fun SetupStepSentry( enabled: Boolean, onEnabledChange: (Boolean) -> Unit, onComplete: () -> Unit, ) { var showPrivacyDialog by rememberSaveable { mutableStateOf(false) } if (showPrivacyDialog) { PrivacyPolicyDialog(onDismissRequest = { showPrivacyDialog = false }) } Column( modifier = Modifier .fillMaxSize() .padding(24.dp), horizontalAlignment = Alignment.CenterHorizontally, ) { Spacer(Modifier.height(32.dp)) Icon( imageVector = Icons.Default.BugReport, contentDescription = null, modifier = Modifier.size(64.dp), tint = MaterialTheme.colorScheme.primary, ) Spacer(Modifier.height(16.dp)) Text( text = stringResource(R.string.settings_crash_reporting), style = MaterialTheme.typography.headlineSmall, textAlign = TextAlign.Center, ) Spacer(Modifier.height(8.dp)) Text( text = stringResource(R.string.settings_crash_reporting_subtitle),