I have a problem for a while.
Idon't know why, but I have black area that cover my debug banner.
This black area reduce height of my app.
I try to replace the content with blanc container but nothing.
I try also to inspect area but nothing.
I have the app on playstore. When I download it from play store, black area still there (large black area on top and small on bottom of the app).
Do you have what can be the issue and how can I solve it please?
Thanks (very sort for my English)
Try using SafeArea:
Scaffold(
body: SafeArea(
child: …
),
),
Related
I'm developing a flutter app, that on iOS devices, I see it's pretty common to have screen transitions to have the effect of previous screen zoomed out, and the new screen sliding from the bottom, and is on top of the previous screen, while we can still see part of the previous screen.
As you can see in the screenshot down below, the blue line is part of the previous screen, the majority of it is getting covered by the new screen.
overlay effect that I'd like to have
I've been searched around for a little bit, would be great if someone could help. Thanks in advance!
Look into showModalBottomSheet
In the onPress on the button that loads the overlay screen write this
showModalBottomSheet(
context: context,
builder: (context) {
// Your overlay widget
}
)
This tutorial gives you some step by step and examples
https://blog.logrocket.com/flutter-modal-bottom-sheet-tutorial-with-examples/
I am using canva.com to create an app icon. I create it using 1024x1024 and plug it into the app icon generator which returns all the sizes for the icons. However, as the size decreases the image gets completely ruined to the point that it is completely illegible.
This is the original:
and this is the size that shows up on the users device (home screen icon):
It is completely blurred out and shows up this way on my device. Any way to fix this?
You've designed your icon incorrectly. You have not planned for the size that it actually will be, so when your icon is shrunk, your strokes are all too thin and the image in the square is ridiculously small. You cannot make a small icon by shrinking a large icon; you need to supply both a large icon and a small icon, each drawn correctly.
I am stuck with one weird issue which only occurred in device during transition in state in Ionic App,it show blank white half screen on bottom.
I have tried various suggestions http://forum.ionicframework.com/t/brief-black-screen-d…/…/48 but nothing worked out even i had forcefully set the body height and background-color using jquery.Still,issue remain the same.
Below is Screen shot of Login screen view so you guys can found what really issue is.
I have submitted my iPhone app for approval and uploaded my icon.
Now, I get the feeling the corners on my icon aren't the right shape. I noticed this when uploading my app as in iTunes Connect it displays my icon with a pre-made shadow behind it and makes it look like my corners come in to tightly.
See the image here. Zoom in on it to get a better look.
You see the corner of my icon, then the shadow further out, below that. Anyone experienced this before? Will it look funny if I leave it? Black out that space? Or will it just stay transparent?
Thanks.
iTunes Connect has had this issue for sometime but it does not affect the main product, for piece of mind you can check the correct icon inside your uploaded versions detail page, it should show the 'Large App Icon' correctly
I'm converting an app from the iPhone to the iPad. The splash screen picture is the right size but when I enter the app after about half a second the picture goes from being perfectly sized to having the bottom and right areas out of screen and white areas above and to the left of the picture. How do I get it to stay in the screen the way it's loaded and not moved out of the screen?
The way it's loaded is probably from a default picture (Default.png). This picture is taken from the iPhone version and is being scaled. You can't make it so that this picture stays.
Check the autoresizingMask and frame properties of your view/picture and maybe also the bounds property.
This seems to be a problem with the status bar:
Maybe you did hide it in the iPhone version, and now you should hide it again for the iPad. Check the info.plist of your app