Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make a GUI like Popcorn Time? [closed]

I am curious as to how one can go about creating a GUI in a similar manner to the popular Popcorn Time application? I have been learning Java, C, C++, and a tiny bit of Objective-C and I have no clue how to make my GUI look any better than that of Java's Swing framework. There seems to be a very limited level of style associated with these default layout frameworks, without getting very advanced with styling.

Is there a framework which will allow me to create better GUIs with Java without spending too much time on it? I'd like to focus on core functionality, but would also like my application to look a tad bit better than Java Swing.

Here is the type of GUI I'd like to create: https://i.sstatic.net/J6Nmg.jpg

like image 675
Trent Avatar asked Dec 30 '25 14:12

Trent


1 Answers

Start with creating simple native GUI's, before attempting "beautiful" GUI's.

Since you told that you have an understanding in C++. I would suggest you to learn Qt framework, which is based on C++. I have been designing GUI's in Qt for over a year now, and occasionally i have used Qt-stylesheets to theme certain GUI elements.

After you become familar in Qt, you can find that there is openGL, QML , javascript and other support available, to create more customized GUI's, although i have not used them.

Get started , with this simple notepad app !

like image 76
Barath Ravikumar Avatar answered Jan 02 '26 02:01

Barath Ravikumar