Labels on tkinter for Pydroid 3
I'm working on a program and am coding it in python and exporting the associated code to pydriod3 to run on a tablet. The majority of the code works but for whatever reason, none of the labels I have coded are showing up. Is this a common issue? Does anyone know of a work around to this issue? Here is an example of some code I'm having problems with: class StartPage(tk.Frame): def __init__(self, master): tk.Frame.__init__(self, master) Message = Label(text='Scheduler', font=12, fg='green') Message.place(x=440, y=1) #Monday Monday = Label(text='Monday', font=12, fg='blue') Monday.place(x=440, y=50) The labels just aren't showing up and I've done extensive searching online and can't find a solution