This project demonstrates a simple SwiftUI-based application for selecting and manipulating objects (squares). It's designed as an educational resource, showcasing how to implement key features like rectangle selection, dragging, and updating object states dynamically.
- Rectangle Selection: Click and drag to draw a selection rectangle. Any squares intersecting the rectangle are highlighted.
- Drag-and-Drop: Selected squares can be dragged to a new position by holding and moving the mouse.
- Dynamic Updates: The positions of squares update in real-time during drag-and-drop interactions.
- Interactive Feedback: Squares change color to indicate their selection status.
- Clone the repository and run the project in Xcode.
- Drag within the green area to select squares.
- Drag the selected squares to move them.
2024-11-29.11.32.41.mov
ContentView.swift
: Contains all logic for selection and manipulation.generateRandomSquares
: Randomly generates square positions.updateSelectedSquares
: Updates the selection status of squares based on their intersection with the selection rectangle.moveSelectedSquares
: Updates the positions of selected squares after a drag operation.
- Xcode 14 or later
- macOS 13 or later
Feel free to fork this repository, submit pull requests, or suggest improvements!
ООО "Лаборатория юридических исследований" и АБ "КАиП" готовят к выпуску приложение для визуализации прохождения судебных дел по всем стадиям, включая промежуточные обжалования обеспечительных мер, определения о приостановке рассмотрения дела в связи с назначением экспертизы, определения о взыскании судебных расходов и другие процессы.
В этом приложении графические изображения стадий можно будет выделять мышкой и оперировать выделенными стадиями:
- Перемещать их (например, с одного уровня инстанций на другой),
- Изменять даты и время,
- Выполнять другие действия с выбранными стадиями.
В рамках подготовки к реализации этих возможностей мы тестируем различные подходы и техники работы с выделением и манипуляцией объектов в SwiftUI. Этот проект — результат одной из таких проб. Мы надеемся, что он станет полезным примером для интересующихся разработчиков.