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

A lower quality user experience than Apple users expect #260

Open
dogusdicle opened this issue Feb 10, 2021 · 4 comments
Open

A lower quality user experience than Apple users expect #260

dogusdicle opened this issue Feb 10, 2021 · 4 comments
Labels
wontfix This will not be worked on

Comments

@dogusdicle
Copy link

Guideline 4.0 - Design

We noticed an issue in your app that contributes to a lower quality user experience than Apple users expect:

  • Your app included controls that were difficult to use due to size or placement. We were unable to close the ad due to the Close (X) button being very close to the edge of the screen.

Next Steps

To resolve this issue, please revise your app to address all instances of this type of issue.

Resources

For information on improving and enhancing your app:

  • Review the UI Design Dos and Don’ts for tips on fundamental design best practices.
  • Watch the video The Ingredients of Great Apps to understand the basics of great apps.
  • Watch the video iPhone and iPad User Interface Design for practical design tips.
  • Watch iOS Development Videos to learn about programming and design tips.
  • Review the iOS Human Interface Guidelines and ensure that your app's interface and design adhere to these guidelines.

Please see attached screenshot for details.

admob

@kmcgill88 kmcgill88 added the wontfix This will not be worked on label Feb 11, 2021
@kmcgill88
Copy link
Owner

This is unfortunate, but not a bug with this plugin. I think this issue should be raised with Google Admob.

@jezsung
Copy link

jezsung commented Feb 15, 2021

Even my customer complaints on App Store review about this. It really ruins the app experience...

@jezsung
Copy link

jezsung commented Feb 15, 2021

Does the firebase_admob package have the same issue?

@jezsung
Copy link

jezsung commented Feb 15, 2021

@dogusdicle @kmcgill88
Ok... looks like the offical plugin firebase_admob has the same issue and I found a solution. You can disable system UI when ads are shown.

AdmobInterstitial(
  adUnitId: AdmobInterstitial.testAdUnitId,
  listener: (event, args) {
    if (event == AdmobAdEvent.closed) {
      SystemChrome.setEnabledSystemUIOverlays(SystemUiOverlay.values);
    } else if (event == AdmobAdEvent.clicked) {
      SystemChrome.setEnabledSystemUIOverlays([]);
    }
  },
);

The related issue on firebase_admob:
firebase/flutterfire#3090

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wontfix This will not be worked on
Projects
None yet
Development

No branches or pull requests

3 participants