
온도, 습도, 바람 정보 시각화하기
·
Flutter/Flutter 날씨 앱 만들기
기온, 습도, 풍속… 날씨 정보를 숫자로만 보여주면 사용자에게 큰 인상을 주기 어렵다.이번 글에서는 Flutter에서 온도, 습도, 바람을 감각적으로 시각화하는 UI를 구현해본다.🌡️ 온도 게이지 UI 만들기현재 기온을 수은주 형태로 표현하면 사용자에게 체감도를 전달할 수 있다.// flutter_gauge 패키지 추천dependencies: flutter_gauge: ^1.0.4FlutterGauge( handSize: 30, width: 200, index: temperature, fontFamily: "Roboto", end: 50, number: Number.endAndCenter, secondsMarker: SecondsMarker.secondsAndMinute, isCircl..