html_to_flutter_kit library
A complete solution for converting HTML to Flutter widgets.
This library exports the following libraries:
Classes
- CssColorParser
- A parser that parses CSS color values.
- Html
- This class represents all supported CSS properties by this package.
- HtmlConfig
- This class represents all configurations for parsing HTML.
- HtmlExtension
-
The
HtmlExtensionclass is the base class for all extensions. - IframeExtextion
- An extension to parse iframe tags.
- ParsedResult
-
ParsedResultrepresents the result of parsing HTML. - Spacing
-
This class represents properties like
margin,padding, etc. - Style
- This class represents all supported CSS properties by this package.
- TableExtension
- Extension for table widgets.
- TagExtension
- Creates an extension for the specified tag.
- Value
- This class represents a spacing value.
Enums
- RenderMode
-
Defines how the children of
Htmlshould be rendered. - SpacingValueUnit
- The unit of a spacing value.
Extensions
-
ValidElementExtension
on List<
Node> - Helper for Node extensions.
Typedefs
- Document = Document
-
Alias for
package:html/dom.dartdom.Document. - HTMLElement = Element
-
Alias for
package:html/dom.dartdom.Element. - HTMLText = Text
-
Alias for
package:html/dom.dartdom.Text. - Node = Node
-
Alias for
package:html/dom.dartdom.Node. - NodeList = NodeList
-
Alias for
package:html/dom.dartdom.NodeList. -
OnLinkTap
= void Function(String? url, [Map<
Object, String> ? attributes, HTMLElement? element]) - Signature for tap event handler.