Skip to main content

TimePicker

A Material-style time picker dialog.

Can be opened by calling the flet.Page.show_dialog method.

Depending on the entry_mode, it will show either a Dial or an Input (hour and minute text fields) for picking a time.

Example:

ft.TimePicker(
open=True,
value=time(1, 2),
entry_mode=ft.TimePickerEntryMode.INPUT_ONLY,
)
TimePicker
Time picker

Inherits: DialogControl

Properties

Events

Examples

Live example

Basic Example

from datetime import time

import flet as ft


def main(page: ft.Page):
page.horizontal_alignment = ft.CrossAxisAlignment.CENTER

def handle_change(e: ft.Event[ft.TimePicker]):
selection.value = f"Selection: {time_picker.value}"
page.show_dialog(ft.SnackBar(f"TimePicker change: {time_picker.value}"))

def handle_dismissal(e: ft.Event[ft.DialogControl]):
page.show_dialog(ft.SnackBar("TimePicker dismissed!"))

def handle_entry_mode_change(e: ft.TimePickerEntryModeChangeEvent):
page.show_dialog(ft.SnackBar(f"Entry mode changed: {time_picker.entry_mode}"))

time_picker = ft.TimePicker(
value=time(hour=19, minute=30),
confirm_text="Confirm",
error_invalid_text="Time out of range",
help_text="Pick your time slot",
entry_mode=ft.TimePickerEntryMode.DIAL,
on_change=handle_change,
on_dismiss=handle_dismissal,
on_entry_mode_change=handle_entry_mode_change,
)

page.add(
ft.SafeArea(
content=ft.Column(
horizontal_alignment=ft.CrossAxisAlignment.CENTER,
controls=[
ft.Button(
content="Pick time",
icon=ft.Icons.TIME_TO_LEAVE,
on_click=lambda: page.show_dialog(time_picker),
),
selection := ft.Text(weight=ft.FontWeight.BOLD),
],
),
),
)


if __name__ == "__main__":
ft.run(main)

Hour Formats

from datetime import time

import flet as ft


def main(page: ft.Page):
page.horizontal_alignment = ft.CrossAxisAlignment.CENTER

def get_system_hour_format():
"""Returns the current system's hour format."""
return "24h" if page.media.always_use_24_hour_format else "12h"

def format_time(value: time) -> str:
"""Returns a formatted time string based on TimePicker and system settings."""
use_24h = time_picker.hour_format == ft.TimePickerHourFormat.H24 or (
time_picker.hour_format == ft.TimePickerHourFormat.SYSTEM
and page.media.always_use_24_hour_format
)
return value.strftime("%H:%M" if use_24h else "%I:%M %p")

def handle_change(e: ft.Event[ft.TimePicker]):
selection.value = f"Selection: {format_time(time_picker.value)}"

time_picker = ft.TimePicker(
value=time(hour=19, minute=30),
help_text="Choose your meeting time",
on_change=handle_change,
)

def open_picker(e: ft.Event[ft.Button]):
choice = format_dropdown.value
hour_format_map = {
"system": ft.TimePickerHourFormat.SYSTEM,
"12h": ft.TimePickerHourFormat.H12,
"24h": ft.TimePickerHourFormat.H24,
}
time_picker.hour_format = hour_format_map[choice]
page.show_dialog(time_picker)

page.add(
ft.SafeArea(
content=ft.Column(
horizontal_alignment=ft.CrossAxisAlignment.CENTER,
controls=[
ft.Row(
alignment=ft.MainAxisAlignment.CENTER,
controls=[
format_dropdown := ft.Dropdown(
label="Hour format",
value="system",
width=260,
key="dd",
options=[
ft.DropdownOption(
key="system",
text=(
f"System default "
f"({get_system_hour_format()})"
),
),
ft.DropdownOption(key="12h", text="12-hour clock"),
ft.DropdownOption(key="24h", text="24-hour clock"),
],
),
ft.Button(
"Open TimePicker",
icon=ft.Icons.SCHEDULE,
on_click=open_picker,
),
],
),
selection := ft.Text(weight=ft.FontWeight.BOLD),
],
),
),
)


if __name__ == "__main__":
ft.run(main)

Properties

barrier_colorclass-attributeinstance-attribute

barrier_color: Optional[ColorValue] = None

The color of the modal barrier that darkens everything below this picker's dialog.

If None, the flet.DialogTheme.barrier_color is used. If it is also None, then flet.Colors.BLACK_54 is used.

cancel_textclass-attributeinstance-attribute

cancel_text: Optional[str] = None

The text that is displayed on the cancel button.

The default value is "Cancel".

confirm_textclass-attributeinstance-attribute

confirm_text: Optional[str] = None

The text that is displayed on the confirm button.

The default value is "OK".

entry_modeclass-attributeinstance-attribute

The initial mode of time entry method for this picker.

Defaults to flet.TimePickerEntryMode.DIAL.

error_invalid_textclass-attributeinstance-attribute

error_invalid_text: Optional[str] = None

The error message displayed below the input text field if the input is not a valid hour/minute.

The default value is "Enter a valid time".

help_textclass-attributeinstance-attribute

help_text: Optional[str] = None

The text that is displayed at the top of the header.

This is used to indicate to the user what they are selecting a time for. The default value is "Enter time".

hour_formatclass-attributeinstance-attribute

Defines the hour format of this time picker.

hour_label_textclass-attributeinstance-attribute

hour_label_text: Optional[str] = None

The text that is displayed below the hour input text field.

The default value is "Hour".

localeclass-attributeinstance-attribute

locale: Optional[Locale] = None

The locale for this time picker dialog. It is intended for (rare) cases where this dialog should be localized differently from the rest of the page.

It overrides the locale used by the page (see flet.Page.locale_configuration), but does not participate in page-level locale resolution.

If set to None (the default) or an inexistent/unsupported locale, the current_locale of the flet.Page.locale_configuration is used as fallback.

minute_label_textclass-attributeinstance-attribute

minute_label_text: Optional[str] = None

The text that is displayed below the minute input text field.

The default value is "Minute".

modalclass-attributeinstance-attribute

modal: bool = False

Whether this picker cannot be dismissed by clicking the area outside of it.

orientationclass-attributeinstance-attribute

orientation: Optional[Orientation] = None

The orientation of the dialog when displayed.

switch_to_input_iconclass-attributeinstance-attribute

switch_to_input_icon: Optional[IconData] = None

The icon displayed in the corner of this picker's dialog when entry_mode is flet.TimePickerEntryMode.DIAL.

Clicking on icon changes the entry_mode to flet.TimePickerEntryMode.INPUT.

If None, defaults to Icons.KEYBOARD_OUTLINED.

switch_to_timer_iconclass-attributeinstance-attribute

switch_to_timer_icon: Optional[IconData] = None

The icon displayed in the corner of this picker's dialog when entry_mode is flet.TimePickerEntryMode.INPUT.

Clicking on this icon changes the entry_mode to flet.TimePickerEntryMode.DIAL.

If None, defaults to Icons.ACCESS_TIME.

valueclass-attributeinstance-attribute

value: Optional[time] = field(default_factory=(lambda: datetime.now().time()))

The selected time that this picker should display.

The default value is equal to the current time.

Events

on_changeclass-attributeinstance-attribute

on_change: Optional[ControlEventHandler[TimePicker]] = None

Called when user clicks confirm button.

value property is updated with selected time. Additionally, the data property of the event handler argument also contains the selected time.

on_entry_mode_changeclass-attributeinstance-attribute

on_entry_mode_change: Optional[EventHandler[TimePickerEntryModeChangeEvent]] = None

Called when the entry_mode is changed through the time picker dialog.