Posts by Higor Silva Rosa • 86 points
2 posts
-
5
votes2
answers634
viewsA: How to use different . Kv files in a Kivy application?
It is possible yes. In Python code, remember to load the files using Builder: from kivy.lang import Builder Builder.load_file('caminho_para_arquivo_kivy.kv') In the main Kv file (main.Kv), you can…
-
2
votes1
answer253
viewsA: Sobre Local Storage
Local Storage is a local data persistence feature that has been available since HTML5. This means that newer browsers should have support. When I say local data persistence, I am meaning that you…