Add new pages for grades, timetable, homework, exams, attendance, behaviour, and settings; update navigation to support routing and improved login functionality ( that doesnt work )
This commit is contained in:
parent
ca98a9ac7a
commit
d309906d3d
10 changed files with 159 additions and 100 deletions
9
src/pages/attendance.py
Normal file
9
src/pages/attendance.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import flet as ft
|
||||
|
||||
def AttendancePage():
|
||||
return ft.Column([
|
||||
ft.Text(" Attendance", size=30, weight="bold"),
|
||||
ft.Placeholder()
|
||||
])
|
||||
|
||||
|
9
src/pages/behaviour.py
Normal file
9
src/pages/behaviour.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import flet as ft
|
||||
|
||||
def BehaviourPage():
|
||||
return ft.Column([
|
||||
ft.Text(" Behaviour", size=30, weight="bold"),
|
||||
ft.Placeholder()
|
||||
])
|
||||
|
||||
|
9
src/pages/exams.py
Normal file
9
src/pages/exams.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import flet as ft
|
||||
|
||||
def ExamsPage():
|
||||
return ft.Column([
|
||||
ft.Text(" Exams", size=30, weight="bold"),
|
||||
ft.Placeholder()
|
||||
])
|
||||
|
||||
|
9
src/pages/grades.py
Normal file
9
src/pages/grades.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import flet as ft
|
||||
|
||||
def GradesPage():
|
||||
return ft.Column([
|
||||
ft.Text(" Grades", size=30, weight="bold"),
|
||||
ft.Placeholder()
|
||||
])
|
||||
|
||||
|
9
src/pages/homework.py
Normal file
9
src/pages/homework.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import flet as ft
|
||||
|
||||
def HomeworkPage():
|
||||
return ft.Column([
|
||||
ft.Text(" Homework", size=30, weight="bold"),
|
||||
ft.Placeholder()
|
||||
])
|
||||
|
||||
|
9
src/pages/settings.py
Normal file
9
src/pages/settings.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import flet as ft
|
||||
|
||||
def SettingsPage():
|
||||
return ft.Column([
|
||||
ft.Text(" Settings", size=30, weight="bold"),
|
||||
ft.Placeholder()
|
||||
])
|
||||
|
||||
|
9
src/pages/timetable.py
Normal file
9
src/pages/timetable.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import flet as ft
|
||||
|
||||
def TimetablePage():
|
||||
return ft.Column([
|
||||
ft.Text(" Timetable", size=30, weight="bold"),
|
||||
ft.Placeholder()
|
||||
])
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue