일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- node
- 외국납부세액공제
- 공매
- pod
- Kubernetes
- OpenSearch
- 임업후계자
- AWS
- 농지연금
- 정책자금
- 리소스
- boto3
- Resolver
- 매입불공제
- serverless
- 성능개선
- route53
- S3
- 세금계산서
- 금융소득
- 경매
- python
- 산지연금
- kubectl
- 인덱싱
- command
- 신탁공매
- 양도소득세
- lambda
- Filter
- Today
- Total
목록IT (42)
진지한 개발자
GetX ... Provider BlockProvider EventStreamProvider ScrollAwareImageProvider TickerProviderStateMixin Bloc 대규모 상태관리에 적합 BlocProvider BlocBase BlocBuilder BlocConsumer BlocEventSink BloKistener BlocSelector Widget에 함수를 구현하게 되는 경우 context내에 있는 Bloc을 읽어 와서 연결하고자 하는 event를 붙여줌 FloatingActionButton(onPressed: () => context.read().add(Increment())), FloatingActionButton : Widget CounterBloc : Bloc Inc..
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/flutte..