Skip to content

🌌 An MVVM Sample project with custom Image Loading Library

Notifications You must be signed in to change notification settings

Spikeysanju/Picto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

17 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

GitHub Cards Preview

Picto

Picto is a sample gallery Android application πŸ“± built to demonstrate use of Modern Android development tools & use of Picto - An Custom image loading library for Android developed by Spikeysanju πŸ₯³.

API for Picto App is hosted here here.

You can Install and test latest Picto app from below πŸ‘‡

Picto App

Built With πŸ› 

  • Kotlin - First class and official programming language for Android development.
  • Coroutines - For asynchronous and more..
  • Android Architecture Components - Collection of libraries that help you design robust, testable, and maintainable apps.
    • LiveData - Data objects that notify views when the underlying database changes.
    • ViewModel - Stores UI-related data that isn't destroyed on UI changes.
    • Room - SQLite object mapping library.
  • Koin - Dependency Injection Framework
  • Retrofit 2 - A type-safe HTTP client for Android and Java.
  • GSON Converter - A Converter which uses Gson for serialization to and from JSON.
  • Picto - An Custom image loading library for Android developed by Spikeysanju.
  • Material Components for Android - Modular and customizable Material Design UI components for Android.

Package Structure

www.spikeysanju.picto   # Root Package
.
β”œβ”€β”€ data                # For data handling.
β”‚   β”œβ”€β”€ db              # Local Persistence Database. Room (SQLite) database
|   β”‚   β”œβ”€β”€ dao         # Data Access Object for Room   
|   |   |── database    # Datbase Instance
β”‚   β”œβ”€β”€ api             # Remote Data Handlers     
|   β”‚   β”œβ”€β”€ postapi     # Retrofit API for remote end point.
β”‚   └── |── retrofit    # Single source of data.
|
β”œβ”€β”€ model               # Model classes
|
β”œβ”€β”€ di                  # Dependency Injection             
β”‚   β”œβ”€β”€ builder         # Activity Builder
β”‚   β”œβ”€β”€ component       # DI Components       
β”‚   └── module          # DI Modules
|
β”œβ”€β”€ ui                  # Activity/View layer
β”‚   β”œβ”€β”€ main            # Main Screen Activity & ViewModel
|   β”‚   β”œβ”€β”€ adapter     # Adapter for RecyclerView
|   β”‚   └── viewmodel   # ViewHolder for RecyclerView   
|
└── utils               # Utility Classes / Kotlin extensions



## Architecture

This app uses MVVM (Model View View-Model) architecture.

Contribute

If you want to contribute to this library, you're always welcome! See Contributing Guidelines.

Contact

Have an project? DM me at πŸ‘‡

Drop a mail to:- spikeysanju98@gmail.com

Donation

If this project help you reduce time to develop, you can give me a cup of coffee :)

paypal

License

MIT License

Copyright (c) 2020 Spikeysanju

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.