this fixes #1 and improved the code base

This commit is contained in:
2024-04-21 04:44:52 +00:00
parent 558a9abecc
commit 887dfcc088
29 changed files with 542 additions and 139 deletions

View File

@ -9,5 +9,5 @@ __all__ = [
'Ooredoo',
'Medianet',
'Stelco',
'Mwsc'
]
'Mwsc',
]

View File

@ -1,5 +1,5 @@
from .app import App as Dhiraagu
__all__ = [
'Dhiraagu'
]
'Dhiraagu',
]

View File

@ -11,7 +11,7 @@ def App(page: ft.Page):
ft.icons.ARROW_BACK_IOS_NEW_ROUNDED,
on_click=lambda _: page.go('/apps'),
),
title=ft.Text("Dhiraagu"),
title=ft.Text('Dhiraagu'),
bgcolor=ft.colors.TRANSPARENT,
),
],

View File

@ -1,5 +1,5 @@
from .app import App as Medianet
__all__ = [
"Medianet"
]
'Medianet',
]

View File

@ -11,7 +11,7 @@ def App(page: ft.Page):
ft.icons.ARROW_BACK_IOS_NEW_ROUNDED,
on_click=lambda _: page.go('/apps'),
),
title=ft.Text("Medianet"),
title=ft.Text('Medianet'),
bgcolor=ft.colors.TRANSPARENT,
),
],

View File

@ -1,5 +1,5 @@
from .app import App as Mwsc
__all__ = [
'Mwsc'
]
'Mwsc',
]

View File

@ -11,7 +11,7 @@ def App(page: ft.Page):
ft.icons.ARROW_BACK_IOS_NEW_ROUNDED,
on_click=lambda _: page.go('/apps'),
),
title=ft.Text("MWSC"),
title=ft.Text('MWSC'),
bgcolor=ft.colors.TRANSPARENT,
),
],

View File

@ -1,5 +1,5 @@
from .app import App as Ooredoo
__all__ = [
'Ooredoo'
]
'Ooredoo',
]

View File

@ -11,7 +11,7 @@ def App(page: ft.Page):
ft.icons.ARROW_BACK_IOS_NEW_ROUNDED,
on_click=lambda _: page.go('/apps'),
),
title=ft.Text("Ooredoo"),
title=ft.Text('Ooredoo'),
bgcolor=ft.colors.TRANSPARENT,
),
],

View File

@ -1,5 +1,5 @@
from .app import App as Stelco
__all__ = [
'Stelco'
]
'Stelco',
]

View File

@ -11,7 +11,7 @@ def App(page: ft.Page):
ft.icons.ARROW_BACK_IOS_NEW_ROUNDED,
on_click=lambda _: page.go('/apps'),
),
title=ft.Text("STELCO"),
title=ft.Text('STELCO'),
bgcolor=ft.colors.TRANSPARENT,
),
],