How to Solve NameError: name 'NumericProperty' is not defined -- kivy

Solution: Import the 'NumericProperty' module

To Solve the error, add the following line to the top of your code.

from kivy import NumericProperty

 

For more information:
Python kivy NumericProperty