Skip to content
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

[BUG] it's not working web in iOS 15. #1401

Open
LucyJeong opened this issue Dec 27, 2023 · 3 comments
Open

[BUG] it's not working web in iOS 15. #1401

LucyJeong opened this issue Dec 27, 2023 · 3 comments
Labels
bug Something isn't working

Comments

@LucyJeong
Copy link

LucyJeong commented Dec 27, 2023

flutter version
Screenshot 2023-12-28 at 8 33 44 AM

Describe the bug:
html is not working in iOS15, only web. app is working. When I access web in mobile, it look like gray.
it's working on iOS 17 (web/app).

package version

  flutter_html: ^3.0.0-beta.2
  flutter_html_table: ^3.0.0-beta.2

HTML to reproduce the issue:
<p>ㅋㅋ<br></p>

Html widget configuration:

Html(
                style: pStyle,
                data: widget.program.detailText,
                extensions: [
                  OnImageTapExtension(
                    onImageTap: (url, attributes, element) {
                      if (url == null) return;
                      Navigator.of(context).push(MaterialPageRoute(
                        builder: (context) => ProgramSinglePhotoScreen(
                          currentIndex: 0,
                          sortedImageURLs: [url],
                          imageDescriptions: const [""],
                        ),
                      ));
                    },
                  )
                ],
                onLinkTap: (url, attributes, element) {
                  if (url == null) return;
                  Navigator.push(
                      context,
                      UnanimatedPageRoute(
                        builder: (p0) => WebViewScreen(url: url, naviTitle: ''),
                      ));
                },
              ),

Expected behavior:

Screenshots:
Screenshot 2023-12-28 at 8 39 49 AM
web

Device details and Flutter/Dart/flutter_html versions:
flutter_html: ^3.0.0-beta.2

@LucyJeong LucyJeong added the bug Something isn't working label Dec 27, 2023
@LucyJeong LucyJeong changed the title [BUG] [BUG] it's not working web in iOS 15. Dec 27, 2023
@Akshay-Niveus
Copy link

Facing same issue. Any update?

@grob-gestaltet
Copy link

Facing same issue. Any update or Workarround?

@KimGenius
Copy link

why didn't update anything..? this is critical issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants