How to resize Splash Screen Image in MAUI? - maui

I'm trying to add an image on Splash Screen and the image size is 512x512 but it is not showing correctly on the splash screen. So, is there a way to resize the splash screen image?

Yes, there is a known issue about this problem. And this issue has been moved to the Backlog milestone. This means that it is not going to be worked on for the coming release.
You can follow it up here: https://github.com/dotnet/maui/issues/10275 .
Similar issue here: https://github.com/dotnet/maui/pull/9797 .
Thanks for your support and feedback for maui.

You can refer to step 5 of my blog on how to add/change the Splash screen image.
Basically, you have to edit your project file & edit the MauiSplashScreen ItemGroup property BaseSize accordingly to fit your image.

Related

Splash Screen Retina 3.5

I'm not able to add splash screen for Retina device 3.5 in launch image, And while running with basic images its showing the following error,
Can any one help me to solve this issue.
Just Create another Default splash image with name Default#2x.png and store it in your project.
Just create this image with double size of original Default.png image...
first check...in your project Directory...Default#2x.png is available or not....
if yes then remove...and clean project...after then add once again...

How to Add image in custom cell using settings.bundle in iPhone?

i have created a settings screen for iPhone application which is visible in iPhone settings.
Now i have a requirement to add image logo of the application inside that screen (Screenshot Attached)
i am using root.plist for settings. any one guide me how to achieve this?
Thanks in advance.
The icon displayed will be a scaled down version of the Icon.png file by default. If you want something different add an icon sized at 29 x 29 pixels named Icon-Settings.png to your application.
I ended up this problem with following points:
those applications that are part of iOS only display that functionality otherwise it is not possible.

Generate splash

I want to generate splash before my tabbar based application starts. Please help me out....
Short version: Create your splash image and name it Default.png.
A tutorial can be found here.
You cannot create an animated splash screen on iOS.
You MUST start by an image.
However what you can do is
Setup a launch image
display a view controller that animate then move on to your application
One common practice is to setup a launch image that is the first image of your animation.
this way the user won't see the difference between the static and animated parts of your splash screen.

image scrolling on touches in iphone

iam developing an app in which, images are to be scrolled on touchesmove i.e, swipping left /right.
I also have to display previous and next images beside present image in protrait mode.
I have seen the covertFlow sample, which is very close to my app, but i want it in horizontal mode. Please suggest me how can i acheive it , links related to it can also be helpful for me..
thanks in advance.
Well how about taking the open source CoverFlow implementation and modify it to work in portrait mode?
You can get sample code in this tapku Library
I solved my query and it is working without using any libraries.
I used the concept of lazyloading to download images, and i placed the images in scrollview which helps to scroll the images.
The following link used to load images asynchronously.
http://www.markj.net/iphone-asynchronous-table-image/

How to resize & scroll image within a fixed region on iPad's Safari?

There are very good demos show a fixed header on top & scrollable contents below in mobile Safari(see: cubiq.org/dropbox/iphonescroll.html & doctyper.com/stuff/iphone/fixed/). But if we also want to scale image around within lower part. How can we do this?
I found the solution with the help of code from Alex Gibson. But it's not smoothy as Safari does. I'll try to solve this performance problem.