앱을 실행하면 잠시동안 앱의 로고를 보여주는 화면이 있습니다. 이를 Splash Screen 이라고 하는데 flutter_native_splash 라이브러리를 이용하여 만드는 방법에 대해 알아보고자 합니다. Splash 이미지를 준비합니다. 라이브러리를 설치합니다. pubspec.yaml 에 아래의 라이브러리를 추가 한 후, flutter pub get 을 실행합니다. ... dependencies: flutter_native_splash: ^2.2.4 ...Splash Screen 세팅하기 다음의 yaml 코드를 pubspec.yaml 파일에 추가하거나, Root 프로젝트 폴더에 flutter_native_splash.yaml 이라는 새 파일에 작성합니다. flutter_native_splash: co..