Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- pytorch
- Flutter
- Stream
- MDP
- Computer Architecture
- Algorithm
- Image Processing
- llm을 활용 단어장 앱 개발일지
- PCA
- MATLAB
- FastAPI
- Got
- system hacking
- C++
- Kaggle
- BOF
- 영상처리
- Dreamhack
- DART
- Widget
- ML
- bloc
- fastapi를 사용한 파이썬 웹 개발
- BAEKJOON
- rao
- 파이토치 트랜스포머를 활용한 자연어 처리와 컴퓨터비전 심층학습
- study book
- ARM
- BFS
- 백준
Archives
- Today
- Total
목록material 3 (1)
Bull

copyWith 의미copyWith 메소드는 Flutter에서 Immutable 클래스를 복사하면서 특정 속성들을 변경할 수 있도록 해주는 메소드입니다. 주로 StatefulWidget의 상태를 관리할 때 많이 사용됩니다.copyWith 예제예를 들어, 다음과 같은 Person 클래스를 생각해봅시다.class Person { final String name; final int age; Person({required this.name, required this.age}); Person copyWith({String? name, int? age}) { return Person( name: name ?? this.name, age: age ?? this.age, ); }}..
Software Framework/Flutter
2024. 8. 6. 09:19