navigateToPath method
Navigate to a specific path in the file browser.
Implementation
void navigateToPath(String path) {
setState(() {
currentPath = path;
refreshFiles();
});
}
Navigate to a specific path in the file browser.
void navigateToPath(String path) {
setState(() {
currentPath = path;
refreshFiles();
});
}