git-touch / highlight.dart

Syntax highlighting for Dart and Flutter
https://git-touch.github.io/highlight/
MIT License
234 stars 85 forks source link

Cache parsing results across widget rebuilds #33

Open hacker1024 opened 2 years ago

hacker1024 commented 2 years ago

At the moment, the HighlightView widget parses text in the build method. This is very inefficient.

This PR implements a StatefulWidget instead, caching the parsing results across rebuilts.