M model: المكان اللي هانجيب منه الداتا، الموديل اللي بنعمله عادي، data source, model
V view: ui
C controller: bloc
“The model is. The view shows (what the model is). The controller changes (what the model is or what the view shows).”
- Model — the source for data. In some implementations, it contains the business logic.
- View — concerned with how data (not necessarily that in the Model) is displayed in the user interface.
- Controller — controls what data is displayed, answers to both system or user events, and, in some implementations, contains the business logic.
