1
This is the file . py
class Tela():
pass
class teste():
def chama(self):
pass
def save_d(self):
pass
class Prg(App):
def build(self):
return Tela()
Prg().run()
This is the file . Kv
<Tela>:
Button:
on_release: O qu colocar aqui para acessar a função chama()
Provide a minimum, complete and verifiable example.
– tomasantunes
All right, I edited.
– Fernando Foster