Hello, I have a code in which I have a calendar where you can select dates.
current_frame = set_screen_up(current_frame, current_window)
current_frame.pack()
title = tk.Label(current_frame, text="Schedule A Private Lesson", bg="#0d3b66", fg="White",
font=("Arial Rounded MT Bold", 17, "bold"))
title.grid(row=0, column=1, columnspan=2, pady=20, sticky="nsew")
now = datetime.datetime.now()
today = datetime.date.today()
max_date = today + datetime.timedelta(days=60)
cal = Calendar(current_frame, selectmode="day", mindate=today,
maxdate=max_date, year=now.year, month=now.month, day=now.day,
selectbackground="blue", selectforeground="white")
cal.grid(row=1, column=1, padx=10, pady=20, sticky="nsew")
cal.bind("<<CalendarSelected>>", add_lesson)
I want the calendar to take up as much of the screen as possible but no matter I try (using weight, sticky) it stays the same size. How can I modify the size of the calendar? Thanks