Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Add the dependency to your pubspec.yaml:
flutter pub add flutter_html_audio

```dart
import 'package:flutter_html_audio/flutter_html_audio';
import 'package:flutter_html_audio/flutter_html_audio.dart';

Widget html = Html(
data: myHtml,
Expand All @@ -168,7 +168,7 @@ Add the dependency to your pubspec.yaml:
flutter pub add flutter_html_iframe

```dart
import 'package:flutter_html_iframe/flutter_html_iframe';
import 'package:flutter_html_iframe/flutter_html_iframe.dart';

Widget html = Html(
data: myHtml,
Expand All @@ -195,7 +195,7 @@ Add the dependency to your pubspec.yaml:
flutter pub add flutter_html_math

```dart
import 'package:flutter_html_math/flutter_html_math';
import 'package:flutter_html_math/flutter_html_math.dart';

Widget html = Html(
data: myHtml,
Expand Down Expand Up @@ -256,7 +256,7 @@ Add the dependency to your pubspec.yaml:
flutter pub add flutter_html_svg

```dart
import 'package:flutter_html_svg/flutter_html_svg';
import 'package:flutter_html_svg/flutter_html_svg.dart';

Widget html = Html(
data: myHtml,
Expand All @@ -279,7 +279,7 @@ Add the dependency to your pubspec.yaml:
flutter pub add flutter_html_table

```dart
import 'package:flutter_html_table/flutter_html_table';
import 'package:flutter_html_table/flutter_html_table.dart';

Widget html = Html(
data: myHtml,
Expand All @@ -302,7 +302,7 @@ Add the dependency to your pubspec.yaml:
flutter pub add flutter_html_video

```dart
import 'package:flutter_html_video/flutter_html_video';
import 'package:flutter_html_video/flutter_html_video.dart';

Widget html = Html(
data: myHtml,
Expand Down