mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-23 11:05:59 +00:00
Fix crash in PackageChooser
Add 2 new user restriction items, close #124 Add User restriction editor Add Exit in settings
This commit is contained in:
@@ -180,10 +180,8 @@ fun AppChooserScreen(params: ApplicationsList, onChoosePackage: (String?) -> Uni
|
||||
}
|
||||
) { paddingValues ->
|
||||
LazyColumn(Modifier.fillMaxSize().padding(paddingValues)) {
|
||||
stickyHeader {
|
||||
AnimatedVisibility(progress < 1F) {
|
||||
LinearProgressIndicator(progress = { progress }, modifier = Modifier.fillMaxWidth())
|
||||
}
|
||||
if (progress < 1F) stickyHeader {
|
||||
LinearProgressIndicator({ progress }, Modifier.fillMaxWidth())
|
||||
}
|
||||
items(filteredPackages, { it.name }) {
|
||||
Row(
|
||||
|
||||
Reference in New Issue
Block a user