본문 바로가기
Flutter/Flutter FAQ

Flutter (Dart)에서 속성 값에 따라 객체 목록을 정렬합니다., Sort a list of objects in Flutter (Dart) by property value

by 베타코드 2023. 5. 10.
반응형

질문


How to sort a list of objects by the alphabetical order of one of its properties (Not the name but the actual value the property holds)?

객체 목록을 그 속성의 알파벳 순서에 따라 정렬하는 방법(이름이 아니라 속성이 실제로 보유한 값)은 무엇인가요?


답변


List.sort에 비교 함수를 전달할 수 있습니다. (자세히 보기)

someObjects.sort((a, b) => a.someProperty.compareTo(b.someProperty));
반응형

댓글