So, let's say I have a basic frame with text widgets.
from Tkinter import *
app = Tk()
frame = Frame(app)
frame.pack()
text = Text(app)
text.pack(expand = 1, fill= BOTH)
If I do this and start resizing the window, the text widget will not expand using the window. It works with any other widgets, so what happens with text widgets and how can I resize it using a window?
source
share