dragdropwindows 0.0.4
dragdropwindows: ^0.0.4 copied to clipboard
A Flutter plugin modify windows style to accept Drag&Drop text or files.
dragdropwindows #
This plugin modify windows style to accept Drag&Drop text or files and when Drop text or files from other window, this plugin does call a dart callback function. flutter gets the text or the file name from the callback function.
Supported Platforms #
- ❌ macOS
- ✅ Windows
- ❌ Linux
Characteristic #
- Support drag and drop of multiple files
- Support drag and drop of text
- Support Chinese environment
Usage #
import 'package:dragdropwindows/dragdropwindows.dart';
.
.
.
if (Platform.isWindows) {
try {
DropfilesWindow.start((DropType type, List<String> results) {
print("type=$type results=$results");
setState(() {
_dropInfo = '${type == DropType.text ? 'Drop text' : 'Drop files'} : $results';
});
});
} on PlatformException {
_dropInfo = 'Error to drop';
}
}
refer /example/lib/main.dart for all source code