highlight.dart icon indicating copy to clipboard operation
highlight.dart copied to clipboard

Added highlight_style For easy access to themes

Open Abbas1Hussein opened this issue 1 year ago • 0 comments

Usage Example

return HighlightView(
  // The original code to be highlighted
  code,

  // Specify language
  // It is recommended to give it a value for performance
  language: 'dart',

  // Specify highlight theme
  theme: HighlightStyle.github.theme,

  // Specify padding
  padding: EdgeInsets.all(12),

  // Specify text style
  textStyle: TextStyle(
    fontFamily: 'My awesome monospace font',
    fontSize: 16,
  ),
);

Abbas1Hussein avatar Jan 24 '24 08:01 Abbas1Hussein