Abdulaziz Abduqodirov
Abdulaziz Abduqodirov

Reputation: 110

How to load a HTML in String to WebView in Flutter

I have some HTML code which is in String variable, not in a file. I want to load this String-HTML on WebView

Upvotes: 1

Views: 3682

Answers (1)

Bhargav Sejpal
Bhargav Sejpal

Reputation: 1618

use this package flutter_html: ^1.0.0

import 'package:flutter_html/flutter_html.dart';

SingleChildScrollView(
       child: Html(
               data: "<div></div>", // Your Html code over here
                padding: EdgeInsets.all(8.0),
              ));

Upvotes: 1

Related Questions