Flutter Bloc Tdd & Clean Architecture

Posted By: ELK1nG

Flutter Bloc Tdd & Clean Architecture
Published 8/2023
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
Language: English | Size: 228.00 MB | Duration: 0h 30m

Understanding Flutter BLoC how works TDDD and Clean Architecture

What you'll learn

Students will learn about TDD

They will also learn what's clean architecture

Why TDD and clean architecture importatn

How we can Integrate BLoC with TDD and clean architecture

Requirements

Basic understanding of programming

Description

This is course where we will cover what is clean architecture in detail with step by step example. We will also talk about why it important and how it plays an important role for big projects and how a team can collaborate with their projects if the project is done using clean architecture and how each of the project is dependent.Why Clean ArchitectureMVVM/MVC/MVP/MVI architecture is good enough for most of the applications. But when the application grows, it becomes hard to maintain the huge codebase, and sometimes, it requires refactoring efforts to separate the responsibilities of each and every layer and then clean architecture comes into the picture.An important goal of clean architecture is to provide developers with a way to organize code in such a way that it encapsulates the business logic but keeps it separate from the delivery mechanism.DomainThis is the core layer of the application. The domain layer is independent of any other layers thus ] domain business logic can be independent from other layers.This means that changes in other layers will have no effect on domain layer eg. screen UI (presentation layer) or changing database (data layer) will not result in any code change within domain layer.Components of domain layer include:usecase: They enclose a single action, like getting data from a database or posting to a service. They use the repositories to resolve the action they are supposed to do.PresentationThe presentation layer contains components involved in showing information to the user. The main part of this layer are the Views(widgets) and ViewModels.

Overview

Section 1: Introduction

Lecture 1 Introduction

Section 2: Understanding the layer

Lecture 2 Understand domain layer models, repositories and use cases

Lecture 3 Understanding data layer and the models

Lecture 4 4. Understanding data layer and repositories

Lecture 5 Understanding presentation layer

Lecture 6 Wrap up layers understanding

Section 3: Clean architecture and SOLID principles

Lecture 7 Clean architecture and SOLID principles

Section 4: A basic example of clean architecture

Lecture 8 A basic example of clean architecture

Intermediate to advanced learners