Skip to content

fix: Corrected README imports #1469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 12, 2025
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