mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-23 19:15:58 +00:00
optimize some functions in App manager
optimize Permitted accessibility services and Permitted IME use state to store their package list instead of create global variables update related document
This commit is contained in:
@@ -65,15 +65,14 @@ fun NavIcon(operation: () -> Unit) {
|
||||
|
||||
@Composable
|
||||
fun Information(content: @Composable ()->Unit) {
|
||||
Column(modifier = Modifier.fillMaxWidth().padding(start = 5.dp)) {
|
||||
Column(modifier = Modifier.fillMaxWidth().padding(start = 5.dp, top = 20.dp)) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.info_fill0),
|
||||
contentDescription = "info",
|
||||
tint = colorScheme.onBackground.copy(alpha = 0.8F)
|
||||
)
|
||||
Spacer(Modifier.padding(vertical = 1.dp))
|
||||
Row {
|
||||
Spacer(Modifier.padding(horizontal = 1.dp))
|
||||
Column(modifier = Modifier.padding(start = 2.dp)) {
|
||||
content()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user