반응형

flutter 34

Flutter Quill text editor

플러터에는 여러가지 text editor가 존재한다. 대표적인게 quill, zefyr, richeditor이다. 그중에서 quill이 사람들이 가장 많이 사용하고 있어서, quill에 대해서 설명해보려고 한다. 먼저, pubspec.yaml에서 dependencies에 추가해준다. 참고로, flutter 3.0이상인 경우만 지원을 null safety를 지원해줘서 이참에 업데이트를 했다. (flutter 2.x 버전에서는 디버깅 오류났음) dependencies: flutter: sdk: flutter flutter_quill: ^5.0.2 그리고 quill 패키지를 로드해준다. quill 패키지 안에 Text가 존재하는데, 이게 충돌이 나서 as quill로 불러왔다. import 'package:f..

flutter 2022.05.27

The body might complete normally, causing 'null' to be returned 오류

함수가 null값을 return하면 안되는데, 코드에서 null값을 리턴하거나 리턴 값이 없을 때 발생한다. 나도 try, catch 구문에서 발생했는데, 이때 catch부분에 rethrow를 추가해주면 된다. 아래 링크를 참고함. https://stackoverflow.com/questions/68119285/the-body-might-complete-normally-causing-null-to-be-returned-but-the-return The body might complete normally, causing 'null' to be returned, but the return type is a potentially non-nullable type I'm using new dart version ..

flutter 2022.05.04
반응형