NumberFormatting7.1 Flutter 보간된 문자열을 어떻게 포맷하는지 방법, How to format an interpolated String 질문 다음과 같은 문자열을 형식화해야 합니다: "Send %d seconds ago", "Harry likes %s", "I think %1$s likes %2$s". 이러한 형식화는 Android에서 구현할 수 있지만, Dart for Flutter에서는 어떻게 구현해야 할지 모릅니다. 답변 Dart는 문자열 보간을 지원합니다. var seconds = 5; print("Send $seconds seconds ago"); var harryLikes = 'Silvia'; var otherName = 'Erik'; var otherLikes = 'Chess'; print("Harry like $harryLikes"); print("I think $otherName like $otherLikes"); 또한 .. 2023. 9. 29. 이전 1 다음