본문 바로가기
반응형

Flutter3

[Flutter] Chrome 사용 시 nodejs서버에서 XMLHttpRequest 오류 발생 https://stackoverflow.com/questions/60191683/xmlhttprequest-error-in-flutter-web-enabling-cors-aws-api-gateway XMLHttpRequest error in flutter web [Enabling CORS AWS API gateway] Note: It turns out that this had nothing to do with flutter and everything to do with the fact that I had set the API gateway to a Lambda Proxy I am trying to hit an API endpoint from a Flutter web stackoverflow.com npm.. 2022. 1. 26.
[Flutter] 키보드가 올라오면 발생하는 Bottom overflowed by ?Pixels 해당 문제는 키보드에 의해 가려지는 위젯이 생겼을 때 나타나는 문제로. 기본적으로 상위 위젯인 Scaffold에 resizeToAvoidBottomInset : false, 를 추가하는 것으로 해당 경고문을 숨길수 있지만 키보드가 올라와 있는상태에서 키보드 뒤의 위젯을 확인하기가 어렵다. 그래서 이것을 추가하는것 대신 Scaffolod의 바로 하위의 위젯을 SingleChildScrollView로 감싸주면 쉽게 해결 할 수 있다. 2022. 1. 12.
[Flutter] TextFormField에서 키보드 Next 를 눌러도 다음 TextFormField로 안 넘어갈 때 TextFormField에 아래의 코드 추가로 해결가능. onEditingComplete: (){ do { FocusScope.of(context).nextFocus(); } while (FocusScope.of(context).focusedChild?.context?.widget is! EditableText); }, https://stackoverflow.com/questions/52150677/how-to-shift-focus-to-next-textfield-in-flutter How to shift focus to next textfield in flutter? I am new to Flutter. I am building a form with multiple text inputs using fo.. 2022. 1. 9.
반응형