본문 바로가기
반응형

trouble shoot5

[Flutter] Make the height of the widget variably change depending on the length of the text input string. (Text 입력 문자열 길이에 따라 위젯의 높이가 가변적으로 변하도록 만들기) [Flutter] Make the height of the widget variably change depending on the length of the text input string. (Text 입력 문자열 길이에 따라 위젯의 높이가 가변적으로 변하도록 만들기) 문제 상황 (Problem) Text에 입력으로 들어오는 문자열 길이에 따라서 위젯의 높이가 가변적으로 변하면 좋겠는 상황이다. 코드를 어떻게 수정해야할까? [Eng] (This is a situation where it would be nice to have the height of the widget change variably depending on the length of the string that is input to the te.. 2023. 9. 18.
[flutter] Shader compilation error 문제 상황 flutter 버전 업그레이드 이후부터 프로젝트 앱 빌드시 Shader compilation error를 포함한 에러가 여러번 호출되는 문제가 있었습니다. 해결 방법 flutter 버전을 다운그레이드 하는 방법 flutter run --enable-software-rendering 명령을 이용하여 다시 빌드하는 방법 안드로이드 에뮬레이터의 하드웨어 가속을 disable하는 방법 필자는 flutter run --enable-software-rendering 명령으로 문제를 해결했습니다. https://www.google.com/search?q=Shader+compilation+error&oq=Shader+compilation+error&aqs=chrome..69i57j0j0i30l2j0i5i30.. 2021. 11. 21.
[flutter] Unimplemented handling of missing static target 문제 상황 빌드를 하려는데 Unimplemented handling of missing static target 에러가 뜹니다. 해결 방법 flutter clean 후, flutter run하면 해결됩니다. > android studio ide에서 flutter clean 방법 https://studiodoc.tistory.com/21 2021. 11. 17.
[flutter] RenderPhysicalModel object was given an infinite size during layout. 문제 상황 위젯에 무한한 크기가 주어졌습니다. 그래서 그릴 수가 없는 문제였습니다. 해결 방법 크기를 설정한 Container로 감싸고, 그 Container를 SingleChildScrollView로 감싸면 해결할 수 있습니다. 2021. 11. 16.
반응형