I'm starting to learn about Tkinter. I'd like to have a container widget ( Frame ), where the user could add as many textfields as needed by the application. The application starts with a textfield, and a button below that textfield. When the user presses the button, a new text entry will be added below the first one ( this may be repeated countless times ). In the window's center, there will be a Text widget, used to display text :)
However, I noticed this in the documentation:
This widget is used to implement scrolled listboxes, canvases, and text fields.
Is there a way to use the Scrollbar with a Frame?