19 lines
443 B
Python
19 lines
443 B
Python
|
import flet as ft
|
||
|
from utils import AppView
|
||
|
|
||
|
|
||
|
def App(page: ft.Page):
|
||
|
return AppView(
|
||
|
'/apps/medianet',
|
||
|
[
|
||
|
ft.AppBar(
|
||
|
leading=ft.IconButton(
|
||
|
ft.icons.ARROW_BACK_IOS_NEW_ROUNDED,
|
||
|
on_click=lambda _: page.go('/apps'),
|
||
|
),
|
||
|
title=ft.Text("Medianet"),
|
||
|
bgcolor=ft.colors.TRANSPARENT,
|
||
|
),
|
||
|
],
|
||
|
)
|