Reputation: 33
Is it possible to set a gradient splash screen? In example
<MauiSplashScreen Include="Resources\Images\splashscreen.svg" Color="#512BD4" />
i want the background to be a gradient and have a word on it
Tried:
<MauiSplashScreen Include="Resources\gradientWithWord.svg" />
i tried set image, but size is set incorrectUpvotes: 2
Views: 1106
Reputation: 14475
Try to set BaseSize on MauiSplashScreen .
The value of the
BaseSize
attribute represents the baseline density of the splash screen, and is effectively the 1.0 scale factor for the splash screen from which all other density sizes are derived.
If we don't specify a BaseSize
for a bitmap-based splash screen, the image isn't resized.
If we don't specify a BaseSize
value for a vector-based splash screen, the dimensions specified in the SVG are assumed to be the base size.
Try
<MauiSplashScreen Include="Resources\Images\splashscreen.svg" BaseSize="128,128" />
Upvotes: 2