HTML Renderer

A lightweight Flutter package for rendering HTML content with customizable styling and widget support

Features

🚀

Lightweight

Minimal dependencies and optimized performance for smooth rendering in your Flutter apps

🎨

Customizable

Full control over styling and appearance with extensive customization options

📱

Flutter Native

Built specifically for Flutter with native widget support and responsive design

Fast Rendering

Optimized HTML parsing and rendering for smooth user experience

🔧

Easy Integration

Simple API design makes it easy to integrate into existing Flutter projects

📖

Well Documented

Comprehensive documentation with examples and best practices

Installation

Add HTML Renderer to your Flutter project's dependencies:

dependencies: flutter: sdk: flutter html_renderer: ^0.0.7

Then run flutter pub get

Quick Start

Get started with HTML Renderer in just a few lines of code:

import 'package:html_renderer/html_renderer.dart'; class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('HTML Renderer Demo')), body: HtmlRenderer( html: '<h1>Hello World</h1><p>This is HTML content!</p>', style: HtmlStyle( fontSize: 16, color: Colors.black, ), ), ); } }
View Full Documentation