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