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

Attach to the bottom of Scaffold instead of the bottom of the screen #145

Open
wiradikusuma opened this issue Jun 6, 2020 · 0 comments
Open

Comments

@wiradikusuma
Copy link

My app has a bottom padding for ads:

Padding(
	child: _inside(ctx),
	padding: EdgeInsets.only(bottom: 100), // For ads
)


Widget _inside(ctx) => Scaffold(
	appBar: ...,
        body: ...,
        floatingActionButton: ...,
);

Unfortunately, the ad widget hides the flushbar, presumably because it is native. How do I make the flushbar appear from the bottom of Scaffold instead of the bottom of the screen? It doesn't make sense anyway to overlay on ads.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants