[Flutter] flutter pub get 시 오류
·
Flutter
[문제]The current Dart SDK version is 3.5.1.Because project_name requires SDK version ^3.5.3, version solving failed.You can try the following suggestion to make the pubspec resolve:* Try using the Flutter SDK version: 3.24.4. Process finished with exit code 1 Dart SDK 버전이 요구되는 버전보다 낮아서 발생하는 문제로 프로젝트 패키지가 Dart SDK 3.5.3 이상을 필요로 하기 때문에, 현재 설치된 Dart SDK 3.5.1 버전에서는 호환되지 않는다.  [해결]flutter upgrade  [다..
Flutter Textfield 키보드로 focus 이동 시키기 (feat. 로그인 창)
·
Flutter
로그인창을 만들 때 엔터나 탭으로 다음 칸으로 이동하게 만들기를 해볼 것이다! //앞전의 정의들 static const inputRadius = 8.0; OutlineInputBorder enabledBorder = const OutlineInputBorder( borderRadius: BorderRadius.all(Radius.circular(inputRadius)), borderSide: BorderSide.none); OutlineInputBorder focusedBorder = const OutlineInputBorder( borderRadius: BorderRadius.all(Radius.circular(inputRadius)), b..
Flutter 녹음 시 동그란 파동 웨이브 구현 (round_wave)
·
Flutter
[목표]이런 파동 ? 파장 웨이브를 구현 해보려고 한다    [패키지]너무 고맙게도 누가 미리 구현 해줘서 그대로 쓰면 되지만 사실 내가 원하는 느낌과는 사뭇 다른 느낌인거 아시자나여  ripple_wave | Flutter packageSimple and easy to use ripple animation that can be wrapped in widgets to create beautiful ripple effectspub.dev [커스텀]패키지 써보면 알겠지만 조금 요란한 웨이브라 살짝 커스텀해서 써보았습니다. import 'package:flutter/material.dart';import 'dart:math' as math show sin, pi;class RippleWave extends S..
Flutter 깜박임 없이 서서히 페이지 이동하기
·
Flutter
[목표]페이지가 이동 할 때 로고가 작아지면서 다음페이지로 서서히 변하는 모습을 구현하고 싶다!  [문제]페이지를 이동할 때 새로운 페이지가 되어버리니 깜빡임이 생겼다.  문제의 원인을 뽑자면 LoginPage 로 이동을 하고 로고를 서서히 줄이는 방식으로 구현 했더니 생긴것같다. 근데 다른 방법이 생각이 안나서 이건 고칠 수 없다..  [해결] 페이지를 이동하는 함수에 FadeTransition을 사용하여 이전의 페이지는 서서히 사라지고 다음 페이지에 로고는 깜빡임 없이 서서히 사라지게 하자  [코드]이미지를 줄이는 애니메이션 코드 //다음 페이지에서 로고 이미지는 줄어들게 하기 class AnimatedLogo extends StatefulWidget { @override _AnimatedLogo..
해니01_15
'플러터' 태그의 글 목록