FLUTTER ECOSYSTEM

NetShareOSS/open_dir

デスクトッププラットフォームでネイティブディレクトリを開くためのFlutterプラグイン。

ディレクトリを開く のプロジェクト画像
Stars
9
Forks
1
最終プッシュ(UTC)
2024/10/31
プロジェクト状態
公開中
NetShareOSS GitHub avatar
GITHUB Organization

NetShareOSS ↗

Vietnam
言語C++CMakeDartCSwiftRuby

技術トピック

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

open_dir

Open directory on the native desktop platform with its app (Finder on MacOS, Files on Linux, File Explorer on Windows)

Twitter URL

Supported platforms
MacOS Linux Windows Android iOS Web
✔️ ✔️ ✔️ ❌️️ ❌️️ ❌️️
Usage

Add open_dir as a dependency in your pubspec.yaml file. This is Endorsed federated plugin.

This plugin is also supported to highlight/select a specific file after opening the directory.

Example
final _openDirPlugin = OpenDir();
final path = '/path/to/directory';
final highlightedFileName = 'file.txt';
await _openDirPlugin.openNativeDir(path: path, highlightedFileName: highlightedFileName);
Demo
Open dir Open dir and highlight file