/* * Copyright (C) 2022 Yubico. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import 'dart:io'; import 'package:desktop_drop/desktop_drop.dart'; import 'package:flutter/material.dart'; import '../core/state.dart'; class FileDropTarget extends StatefulWidget { final Widget child; final Function(File file) onFileDropped; final Widget overlay; const FileDropTarget({ super.key, required this.child, required this.onFileDropped, required this.overlay, }); @override State createState() => _FileDropTargetState(); } class _FileDropTargetState extends State { bool _hovering = false; @override Widget build(BuildContext context) { return DropTarget( onDragEntered: (_) { // Multiple FileDropTarget widgets can be in the tree at the same // time. We only want to use the top-most. if (ModalRoute.of(context)!.isCurrent) { setState(() { _hovering = true; }); } }, onDragExited: (_) { setState(() { _hovering = false; }); }, onDragDone: (details) async { if (ModalRoute.of(context)!.isCurrent) { for (final file in details.files) { widget.onFileDropped(File(file.path)); } } }, enable: !isAndroid, child: Stack( fit: StackFit.expand, children: [ widget.child, if (_hovering) Padding( padding: const EdgeInsets.all(8.0), child: widget.overlay, ), ], ), ); } }