A kivy software development environment targeted towards fast testing and interactive development.
- Emulation can be done in real time
- Supports multiple screen views for mobile devices
- Supports orientation changes for mobile devices
- Also supports outer window emulation for destop intended emulation and for full test for mobile devices
Status: Underdevelopment.... Release: 0
You can download at.
https://mahartstudio.com/kivystudio
Create an new folder open kivystudio. on the top menu bar. go to [file] - then click [open-folder],
then pick your folder
then enter [Ctrl-N] a new file will be opened for your
Copy the following into the file tab.
from kivy.app import App
from kivy.uix.button import Button
class MyApp(App):
def build(self):
return Button(text='Welcome to KivyStudio!!')
if __name__ == '__main__':
MyApp().run()
Finally, enter [Ctrl-S]. then, enter [Ctrl-R]. to see the output, or you can set auto-emulation
Please contact us via pull request or project issue if you would like to contribute to the project.
Mahart Studio