Python Forum
Looking for good GUI Framework for Touch Devices - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: Looking for good GUI Framework for Touch Devices (/thread-32202.html)



Looking for good GUI Framework for Touch Devices - matt_the_hall - Jan-27-2021

Hello,

I'd like to make a tablet-based note taking system and am wanting input on which GUI frameworks might be good options. My design goal is to have the user be able to tap to bring up menus of optional text to insert, and then have the notes exported in plain text with Markdown syntax. I am thinking a combination of Python and Javascript, and maybe using pandas to keep track of data? Would love any recommendations. I am a motivated beginner, for reference.

Thanks!!!


RE: Looking for good GUI Framework for Touch Devices - Larz60+ - Jan-27-2021

kivy handles this gracefully, see: https://kivy.org/doc/stable/guide/inputs.html


RE: Looking for good GUI Framework for Touch Devices - matt_the_hall - Feb-02-2021

(Jan-27-2021, 08:16 PM)Larz60+ Wrote: kivy handles this gracefully, see: https://kivy.org/doc/stable/guide/inputs.html

Thank you!