Site icon George的生活點滴

Flet – Tab 分頁

Tab 能在一個頁面下建立不同的分頁,讓使用者在瀏覽時,能輕鬆的切換

我們直接拿官網的範例做了一下修改來說明並且看一下效果:


# Flet - Tab 
# 2024-08-30
# https://github.com/lcc728/flet/blob/main/ex_tab.py
import flet as ft

def main(page: ft.Page):

    t = ft.Tabs(
        selected_index=1,
        animation_duration=500,
        divider_color= "red",
        divider_height=2,      
        mouse_cursor="TEXT",       
        overlay_color = "yellow",
        unselected_label_color = "amber",
        indicator_border_side=ft.BorderSide(width=10, color=ft.colors.BLUE),  # indicator_color="green",
        indicator_border_radius=10,
        indicator_padding=3,
        tabs=[
            ft.Tab(
                text="Tab 1",
                content=ft.Container(
                    content=ft.Text("This is Tab 1"), alignment=ft.alignment.center
                ),
            ),
            ft.Tab(
                tab_content=ft.Icon(ft.icons.SEARCH),
                content=ft.Text("This is Tab 2"),
            ),
            ft.Tab(
                text="Tab 3",
                icon=ft.icons.SETTINGS,
                content=ft.Text("This is Tab 3"),
            ),
        ],
        expand=1,
    )
    page.add(t)

ft.app(target=main)

程式先用 ft.tabs 建立一個分頁的元件,裡面會有些常用的屬性:

上面的設定幾乎都是選項,屬性能不設定。重點在 tabs 的設定, tabs 為一個 list, 每個 list 都是 ft.tab元件


            ft.Tab(
                text="Tab 1",

                content=ft.Container(
                    content=ft.Text("This is Tab 1"), alignment=ft.alignment.center
                ),
            ),

Tab 的應用 : https://www.george.tw/2024/08/28/flet-collection-01/

執行結果:

SourceCode:https://github.com/lcc728/flet/blob/main/ex_tab.py

Exit mobile version