저번 포스팅에서는 quill editor에 대해서 알아보았다. 오늘은 quill editor에 provider를 적용하는 방법에 대해서 알아보겠다. 사실 다른 provider 적용방법과 다르지 않다. 그냥 quill controller만 모델부분에서 정의해주고, class 만들어준다음에 screen 부분에서 불러와서 쓰면 된다..! toolbar(screen) 부분 class Toolbar extends StatelessWidget { late QuillModel quillmodel; Toolbar({Key? key}) : super(key: key); Future _onImagePickCallback(File file) async { // Copies the picked file from tempora..