'Maui-blazor gradient splash screen
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 incorrect
Solution 1:[1]
Try to set BaseSize on MauiSplashScreen .
The value of the
BaseSizeattribute 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" />
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | ColeX - MSFT |
