First commit
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
package com.helible.pilot.components
|
||||
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.material3.AlertDialog
|
||||
import androidx.compose.material3.Divider
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.material3.TextButton
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.MutableState
|
||||
import androidx.compose.ui.Modifier
|
||||
|
||||
@Composable
|
||||
fun RequiredHardwareFeatures(
|
||||
title: String,
|
||||
description: String,
|
||||
confirmButtonText: String,
|
||||
featureState: MutableState<Boolean?>,
|
||||
requestFeature: () -> Unit,
|
||||
onDismissRequest: () -> Unit
|
||||
) {
|
||||
if (featureState.value == false || featureState.value == null) {
|
||||
AlertDialog(
|
||||
confirmButton = {
|
||||
Divider()
|
||||
TextButton(onClick = requestFeature, modifier = Modifier.fillMaxWidth()) {
|
||||
Text(text=confirmButtonText)
|
||||
}
|
||||
},
|
||||
onDismissRequest = onDismissRequest,
|
||||
text = {
|
||||
Text(
|
||||
text = description
|
||||
)
|
||||
},
|
||||
title = { Text(text = title)}
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user