Search code examples
pythontkinterttk

Python - Text widget from tkinter in ttk


I noticed that the Text widget from tkinter is not present in the ttk widgets. I'm using the ttk instead of tkinter because its interface suits better. And I need Text widget because it has multiple lines unlikely the Entry widget. Does anyone have a solution for my problem?


Solution

  • The solution is to use the tkinter text widget. tkinter and ttk are designed to work together.