진지한 개발자

BLoC 패턴 (business Logic Component) 본문

IT/Flutter

BLoC 패턴 (business Logic Component)

제이_엔 2023. 2. 1. 08:05
728x90

BLoC

  • Presentation Layer와 business Logic 을 분리하여 코드 작성 가능하게 함
  • 스트림을 이용하여 만들어 짐
  • 위젯은 Sinks(입구)를 통하여 BLoC에 이벤트를 보냄
  • BLoC객체는 위젯으로부터 이벤트를 전달받으면 필요한 Repository 등으로부터 데이터를 전달받아 business Logic을 처리함
  • business Logic을 처리한 후, BLoC 객체를 구독 중인 UI 객체들에게 상태를 전달함
  • UI에서 여러 BLoC이 존재 함
  • UI와 business 로직을 분리하여 관리함
  • BLoC은 여러 UI에서 구독할 수 있음

설치

flutter pub add flutter_bloc
flutter pub get

사용

import 'package:flutter_bloc/flutter_bloc.dart';
728x90

'IT > Flutter' 카테고리의 다른 글

flutter_bloc, Provider, Builder  (1) 2023.02.02
상태관리 종류  (0) 2023.02.01