I want to create a text widget, in order to write some credentials.
How can I insert a text that I can't modify, but still be able to write in the Text
widget?
text = Text(root, wrap=NONE,
xscrollcommand=xscrollbar.set,
yscrollcommand=yscrollbar.set)
text.insert(INSERT, "Name: ")
text.configure(state='disabled')
I tried like this and it is ok, because I can't modify the text "Name: ", but the problem is that I can't write anymore in the Text
widget.