Md Asif Alammeasifalam.hashnode.dev·Nov 11, 2024Using a Tag Helper to render a strongly typed partial view in ASP.NET Core MVCUsing a Tag Helper to render a strongly typed partial view in ASP.NET Core MVC can make your code cleaner and more intuitive. Here's how you can do it: Create a Model: public class Product { public int Id { get; set; } public string Name...DiscussMinimal API in DotNet Core.NET
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·879 readsViewModel
Hugo Tavareshugotav.hashnode.dev·Nov 5, 2024MVC: The Superhero Trio of Web DevelopmentWhen building web apps, the MVC (Model-View-Controller) pattern provides a structured approach that enhances manageability, scalability, and collaboration. Models handle data, Views display information, and Controllers manage interactions, making dev...Discussmvc
Mukesh Rajputrajputmukesh748.hashnode.dev·Aug 26, 2024Making API Calls in Android with KtorWhen developing Android applications, handling network operations is a common task. Ktor, a Kotlin-based HTTP client library, provides a robust and flexible way to make API calls. In this guide, we’ll walk through how to use Ktor to fetch data from a...Discussktor
Phani Veludurthiphaniveludurthi.hashnode.dev·Jul 14, 2024Boost App Quality: A Deep Dive into Models, Entities, DTOs, and View ModelsIn the world of software development, especially when dealing with data-intensive applications, understanding the concepts of Models, Entities, Data Transfer Objects (DTOs), and View Models is crucial for building clean, maintainable, and efficient s...DiscussDomain-Driven Design (DDD)
Romman Sabbirrommansabbir.com·Jun 27, 2024Android : ViewModelStoreEver wondered how ViewModel survive during configuration changes in our Android apps? 🤔 Let me introduce you to ViewModelStore! 🔍 What isViewModelStore? ViewModelStore is a class that stores and manages ViewModel instances. It's essential for keepi...Discuss·171 readsAndroid Application Developmentandroid state
Kuldeep Jindanikuldeep-jindani.hashnode.dev·Jun 13, 2024Android Jetpack Compose | Register page fields Validation using ViewModel in MVVMHello guys, Hope you are coding well. I am developing a chat app using Firebase in a series and today I'm gonna show you how we can validate fields using ViewModel in Android Jetpack compose, Which is very common right? In this tutorial, we'll build...Discuss·142 readsAndroid
Emran Khandaker Evanblog.evanemran.info·May 29, 2024Tightly Coupled vs. Loosely Coupled Systems in Android DevelopmentIn Android development, the concepts of tightly coupled and loosely coupled systems play a significant role in determining the flexibility, maintainability, and scalability of an application. Understanding these concepts helps developers design more ...Discuss·13 likes·143 readsAndroidAndroid
Joel Muragurijoelmuraguri.hashnode.dev·Nov 26, 2023Handling State in Jetpack ComposeIntroduction In the realm of Android development, state management plays a pivotal role in ensuring a seamless and responsive user experience. Jetpack Compose, a declarative UI toolkit for building Android apps, introduces a paradigm shift in state m...Discuss·19 likes·142 readsState Management
Abou Zuhayrblog.zuhayr.dev·Sep 24, 2023Implementing a ViewModel in our App with MVVM & DI in Android: (Day 08)Up until now, we have been working on injecting and implementing retrofit, RoomDB, and then our repository layer. The repository layer essentially helped us abstract the source from where data was generated or sent and worked as a single source which...Discuss·301 readsArchitecture Patterns in AndroidMVVM