2024-04-20 16:59:36 +00:00

19 lines
439 B
Python

import flet as ft
from utils import AppView
def App(page: ft.Page):
return AppView(
'/apps/stelco',
[
ft.AppBar(
leading=ft.IconButton(
ft.icons.ARROW_BACK_IOS_NEW_ROUNDED,
on_click=lambda _: page.go('/apps'),
),
title=ft.Text("STELCO"),
bgcolor=ft.colors.TRANSPARENT,
),
],
)