Some features of Turko-Lib that may be similar to traditional web-design and development may be responsive containers. (Similar to justify-content, align-items, display properties).
git clone https://github.com/turko-dev/turko-lib.git
python3 app.py
from turko import *
turko = Turko()
turko.title("My Turko App")
turko.run()
Creating and deploying a GUI in Turko-Lib is much easier than while using a library such as Tkinter/PyQT.
from turko import *
turko = Turko()
turko.title("My Turko App")
turko.run()
turko = Turko()
from turko import *
turko = Turko()
turko.minsize(200, 200)
frame1 = Frame(turko, width="50%", height=500, styleName="frame1", bg="green", borderwidth=2)
frame2 = Frame(frame1, width="50%", height="100%", styleName="frame2", bg="orange", borderwidth=2)
turko.run()