| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Restaurant app inspiration demo for Android from uplabs. https://www.uplabs.com/posts/restaurant-app-for-android
I have used MVP architecture to build the App structure with only remote data source with offline server mock for API calls. Also I have used the following frameworks:
As I mentioned before I've used MVP architecture as follows:
. ├── data # data layer which uses a repository design pattern for handling reading from multiple sources. │ ├── model # network java models. │ ├── remote # remote data source files. │ ├── local # local data sources files. ** Not supported in this project ** │ ├── ..... # base data source interface and its implementation classes. ├── view # view and presentaion layer which includes all UI required files and preseters. │ ├── adapter # has all adapters and helper classes. │ ├── menu # has MenuActivity and it's presenter and contract. │ ├── model # has all view models only. │ ├── ..... # has other activities like AboutActivity, HomeActivity and ContactActivity.
| Back | FazBrowse Home | New Git URL |