mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-04 00:37:04 -08:00
completed the basic ui and anilist module
This commit is contained in:
21
app/View/screens.py
Normal file
21
app/View/screens.py
Normal 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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user