completed the basic ui and anilist module

This commit is contained in:
Benedict Xavier Wanyonyi
2024-05-15 20:33:20 +03:00
commit ffe5db9e33
44 changed files with 3775 additions and 0 deletions

21
app/View/screens.py Normal file
View File

@@ -0,0 +1,21 @@
# The screens dictionary contains the objects of the models and controllers
# of the screens of the application.
from Controller import SearchScreenController,MainScreenController,MyListScreenController
from Model import MainScreenModel,SearchScreenModel,MyListScreenModel
screens = {
"main screen": {
"model": MainScreenModel,
"controller": MainScreenController,
},
"search screen": {
"model": SearchScreenModel,
"controller": SearchScreenController,
},
"my list screen": {
"model": MyListScreenModel,
"controller": MyListScreenController,
},
}