FLUTTER ECOSYSTEM

psovit/rich_code_editor

플러터 기반 코드 편집기

rich_code_editor 프로젝트 이미지
Stars
114
Forks
33
최근 푸시(UTC)
2021. 6. 8.
프로젝트 상태
활성
Sovit GitHub avatar
GITHUB User

Sovit ↗

Full stack developer, Cofounder @Truenary. Currently working with .NET Core & Flutter

@truenary ktm, nepal
언어DartObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 2 개
  • flutter{"sdk":"flutter"}
  • flutter_test개발 의존성{"sdk":"flutter"}

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

rich_code_editor

A simple package that supports creating code editors in Flutter.

Flutter version supported: Flutter 1.22.5

https://github.com/psovit/rich_code_editor/blob/master/demo.gif

Getting Started

There are two main components of the rich code editor:

  1. Editor
  2. Syntax Highlighter

The editor is a text area which is identical to Flutter's TextField widget. However, unlike a regular TextField the editor uses an instance of syntax highlighter object to parse and highlight code syntax.

Since the editor itself is independent of the syntax highlighting rules, the same editor can be used for any other programming langugages. Only the syntax highlighter implementation needs to be created separately for each new programming language.

The example demo uses a dummy syntax highlighter implementation DummySyntaxHighlighter.

Get Started by creating your own implementation for SyntaxHighlighterBase class.

The syntax highlight logic part is not much implemented in this package as that will change as per the choice of programming language.