Am posting this topic because I want to learn more about “classes”. Son specifically how to create a standard class for a hi.view. Maybe what I am doing is a crazy think but better to try than give up. Thanks.
```
import ui
equis = 0
yee = 0
ancho = 800
alto = 800
bgcolor = 'white'
bordercolor = 'green'
nameapp = 'HABITFUN'
class mainscreen():
ui.View(frame = (equis,yee,ancho,alto))
ui.View(background_color = bgcolor)
ui.View(border_color = bordercolor)
ui.View(name = nameapp)
vanimation = mainscreen()
vanimation.present()```
