Solution 1 :
Unfortunately Tkinter won’t work for creating mobile apps as it is meant to be used on desktop only. However check out Swift with Xcode that has a really good user interface for building app interfaces where you can drag and drop different items you want onto the screen – you will need a Mac for that.
Alternatively Android Studio is continually being updated which has a similar interface for creating app screens – available for Windows and Mac.
There are loads of tutorials for starting of on Xcode or Android Studio which should help you get started.
Solution 2 :
Tkinter
is meant for desktop applications, not mobile apps. You won’t be able to make a mobile app with Tkinter
. However, I’ve found that developing in Tkinter
has given me a taste of what developing apps is like, and so I figure some of the thought processes I’ve learned will transfer over to Swift
and Java
, which are the main languages for developing mobile apps.
Problem :
I am trying to create an app and tkinter is really helpful, just want to confirm if Tkinter will successfully lead me to an app for IOS or Android.
Comments
Comment posted by rishi
Tkinter will not work, but you can try kivy
Comment posted by khushi
@rishi I have been trying to download Kivy but my laptop gives me an error
Comment posted by youtube.com/watch?v=bMHK6NDVlCM
I haven’t used kivy myself but have heard a lot about it. You can check this video out if you want to learn about itl,
Comment posted by khushi
@rishi I just checked the video out and did as it says but it still doesn’t work as it doesn’t have an download method for python 3.8.3 which I am using
Comment posted by rishi
Sorry as I said I haven’t used kivy myself so I can’t help you. However if you are really keen on developing apps I wouldn’t suggest using python as it a very slow language and is not compatible with several devices. I suggest learning kotlin, java, flutter or react-native. I am planning to learn react-native as it seemed to have a nice syntax and easy to use.
Comment posted by using-tkinter-programs-on-android
See