August 2015
Intermediate to advanced
246 pages
4h 21m
English
While working with properties in Kivy, there are times when we will have to create our own property that usually is a compound of some standard properties.
Again, for this recipe, it is important to understand the properties in Kivy that have been reviewed in Chapter 1, Kivy and the Kv language, articular in the Declaring properties within a class recipe. We will be learning in detail about AliasProperty, in which you need to create a custom getter and setter methods that fit your needs.
For this recipe, follow these steps:
AliasProperty.def get_right(self): return self.x + self.width ...
Read now
Unlock full access