nathan kayumbanathan79c.hashnode.dev·Nov 8, 2024Introduction to ViewModel: Simplifying Communication Between View and DataIf you’re an Android developer, you’ve likely heard of ViewModel or even used it before. Today, let’s dive into what a ViewModel is, why it’s essential, and how it integrates within the architecture of an Android app. As someone transitioning from we...Discuss·2 likes·860 readsViewModel
Aditya Dascodingandlearning.hashnode.dev·Sep 23, 2024MVVM Architecture in Android: A Comprehensive GuideWelcome to our in-depth exploration of the Model-View-ViewModel (MVVM) architecture in Android development. In this blog post, we'll dive into the core concepts of MVVM, discuss its benefits, and provide practical examples to help you implement this ...DiscussMVVM
Thirdy Gayaressoftware-engineer.thirdygayares.com·Sep 10, 2024MVC (Model-View-Controller) vs MVVM (Model-View-ViewModel)MVC (Model-View-Controller) Model: This is where your data lives. It’s the part of your app that handles things like saving, updating, or loading information. View: This is what the user sees. It shows the data from the Model on the screen. Contro...DiscussMVVM
Eliud Githukugiteliud.hashnode.dev·Aug 9, 2024Using Data Store to store Jwt Token in native android developmentIntroduction In modern Android development, handling user authentication securely is crucial. JSON Web Tokens (JWT) are a popular method for managing authentication tokens. However, storing these tokens securely is equally important. In this blog, we...DiscussBeginner Developers
Yashraj Singh Jadonblog.yashraj.dev·Aug 2, 2024Implementing MVVM Architecture in AndroidModel-View-ViewModel (MVVM) has become a popular architectural pattern in Android development. This blog post will dive deep into MVVM, exploring its components, benefits, and implementation in Android applications. What is MVVM? MVVM is an architect...Discuss·35 readsAndroid
Eric Zimmermanechozulu.hashnode.dev·Jul 28, 2024Adventures in PySide6 MVVM - Part 1Continuing my journey on Qt and PyQt, I was interested in how to structure medium to large sized applications with this technology (and Desktop applications for Python in general). I came across some blogs about Python with MVC, MVP and MVVM but noth...Discuss·51 readsPythonPython
Michael Pipermichaelpiper.hashnode.dev·Jul 26, 2024Architecting Your Flutter Project: Best Practices and GuidelinesIntroduction A well-architected Flutter project is crucial for building scalable, maintainable, and testable applications. Proper project architecture helps in organizing your codebase, managing dependencies, and ensuring a smooth development workflo...DiscussFlutter
Agatha Alana Pereira Pinto Bragaagathaalana.hashnode.dev·Jul 5, 2024Vamos falar sobre MVVM ?Em sua jornada como mochileiro android, é importante conhecer as principais arquiteturas e como elas funcionam, o que elas agregam de valor para o seu projeto, seja ele de estudos ou no seu dia-a-dia dentro da empresa em que trabalha.Vamos começar do...DiscussArquitetura de softwareMVVM
Khush Panchalkhushpanchal.hashnode.dev·Jun 24, 2024Step by Step guide to create basic MVVM Application in AndroidIn this blog we will create a basic mvvm application where user will fetch some data from the api and show it to the UI as a list. For the sake of this article, we will use OMDb (The Open Movie Database) API to fetch the title and thumbnail image of ...DiscussKotlin
Mayursinh Parmarmayursinhdevblog.hashnode.dev·Jun 17, 2024Building a Modern News App with MVVM, Retrofit, Hilt, Pagging and Jetpack Compose in KotlinHello developers! Today, we're going to create a News application using the MVVM design pattern, Retrofit for network calls, Hilt for dependency injection, and the modern UI toolkit Jetpack Compose for the user interface. Let's dive in and have some ...Discuss·77 readsAndroidAndroid