// Automatic FlutterFlow imports import '/backend/schema/structs/index.dart'; import '/flutter_flow/flutter_flow_theme.dart'; import '/flutter_flow/flutter_flow_util.dart'; import 'index.dart'; // Imports other custom widgets import '/custom_code/actions/index.dart'; // Imports custom actions import '/flutter_flow/custom_functions.dart'; // Imports custom functions import 'package:flutter/material.dart'; // Begin custom widget code // DO NOT REMOVE OR MODIFY THE CODE ABOVE! import 'package:flutter_widget_from_html/flutter_widget_from_html.dart'; class FromHTML extends StatefulWidget { const FromHTML({ super.key, this.width, this.height, required this.HTMLParameter, }); final double? width; final double? height; final String HTMLParameter; @override State createState() => _FromHTMLState(); } class _FromHTMLState extends State { @override Widget build(BuildContext context) { return HtmlWidget(widget.HTMLParameter); } }