diff --git a/app/src/main/java/sh/sar/isodroid/ui/components/FileBrowser.kt b/app/src/main/java/sh/sar/isodroid/ui/components/FileBrowser.kt index e766c9c..45e0ea8 100644 --- a/app/src/main/java/sh/sar/isodroid/ui/components/FileBrowser.kt +++ b/app/src/main/java/sh/sar/isodroid/ui/components/FileBrowser.kt @@ -111,10 +111,19 @@ fun FileBrowser( style = MaterialTheme.typography.bodyLarge, color = MaterialTheme.colorScheme.onSurfaceVariant ) + Spacer(modifier = Modifier.height(8.dp)) Text( - text = "Place ISO or IMG files in this directory", + text = "Place ISO or IMG files in:\n$currentPath", style = MaterialTheme.typography.bodySmall, - color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.7f) + color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.7f), + textAlign = androidx.compose.ui.text.style.TextAlign.Center + ) + Spacer(modifier = Modifier.height(16.dp)) + Text( + text = "Tap + to create an empty IMG file\nChange directory in Settings", + style = MaterialTheme.typography.bodySmall, + color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.5f), + textAlign = androidx.compose.ui.text.style.TextAlign.Center ) } } else {