TeXView constructor

const TeXView({
  1. Key? key,
  2. required TeXViewWidget child,
  3. List<TeXViewFont>? fonts,
  4. TeXViewStyle? style,
  5. Widget loadingWidgetBuilder(
    1. BuildContext context
    )?,
  6. dynamic onRenderFinished(
    1. double height
    )?,
  7. TeXViewRenderingEngine? renderingEngine,
})

Implementation

const TeXView({
  super.key,
  required this.child,
  this.fonts,
  // this.height = 500,
  this.style,
  this.loadingWidgetBuilder,
  this.onRenderFinished,
  this.renderingEngine,
});