2024-04-20 16:59:36 +00:00
|
|
|
import flet as ft
|
|
|
|
from utils import AppView
|
|
|
|
|
|
|
|
|
|
|
|
def App(page: ft.Page):
|
|
|
|
return AppView(
|
|
|
|
'/apps/mwsc',
|
|
|
|
[
|
|
|
|
ft.AppBar(
|
|
|
|
leading=ft.IconButton(
|
|
|
|
ft.icons.ARROW_BACK_IOS_NEW_ROUNDED,
|
|
|
|
on_click=lambda _: page.go('/apps'),
|
|
|
|
),
|
2024-04-21 04:44:52 +00:00
|
|
|
title=ft.Text('MWSC'),
|
2024-04-20 16:59:36 +00:00
|
|
|
bgcolor=ft.colors.TRANSPARENT,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|