In brief:
Properties make it easy to pass updates from the python side to the user interface
Binding passes the changes that happened on the user interface to the python side.
from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.lang import Builder
from kivy.properti...