├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── pythonapp.yml ├── .gitignore ├── Makefile ├── README.md ├── README_jp.md ├── examples ├── cancelling_ongoing_drags.py ├── customizing_animation.py ├── customizing_animation_ver2.py ├── draggable_can_work_with_scrollview.py ├── flutter_style_draggable.py ├── reacting_to_entering_and_leaving.py ├── reorderable_stacklayout.py ├── shopping.py └── using_other_widget_as_an_emitter.py ├── poetry.lock ├── pyproject.toml ├── setup.cfg ├── src └── kivy_garden │ └── draggable │ ├── __init__.py │ ├── _impl.py │ └── _utils.py ├── tests ├── test_import.py ├── test_utils_restore_widget_state.py └── test_utils_save_widget_state.py └── tools └── hooks └── pre-commit /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/README.md -------------------------------------------------------------------------------- /README_jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/README_jp.md -------------------------------------------------------------------------------- /examples/cancelling_ongoing_drags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/cancelling_ongoing_drags.py -------------------------------------------------------------------------------- /examples/customizing_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/customizing_animation.py -------------------------------------------------------------------------------- /examples/customizing_animation_ver2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/customizing_animation_ver2.py -------------------------------------------------------------------------------- /examples/draggable_can_work_with_scrollview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/draggable_can_work_with_scrollview.py -------------------------------------------------------------------------------- /examples/flutter_style_draggable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/flutter_style_draggable.py -------------------------------------------------------------------------------- /examples/reacting_to_entering_and_leaving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/reacting_to_entering_and_leaving.py -------------------------------------------------------------------------------- /examples/reorderable_stacklayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/reorderable_stacklayout.py -------------------------------------------------------------------------------- /examples/shopping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/shopping.py -------------------------------------------------------------------------------- /examples/using_other_widget_as_an_emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/examples/using_other_widget_as_an_emitter.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/kivy_garden/draggable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/src/kivy_garden/draggable/__init__.py -------------------------------------------------------------------------------- /src/kivy_garden/draggable/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/src/kivy_garden/draggable/_impl.py -------------------------------------------------------------------------------- /src/kivy_garden/draggable/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/src/kivy_garden/draggable/_utils.py -------------------------------------------------------------------------------- /tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/tests/test_import.py -------------------------------------------------------------------------------- /tests/test_utils_restore_widget_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/tests/test_utils_restore_widget_state.py -------------------------------------------------------------------------------- /tests/test_utils_save_widget_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/tests/test_utils_save_widget_state.py -------------------------------------------------------------------------------- /tools/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/draggable/HEAD/tools/hooks/pre-commit --------------------------------------------------------------------------------