Maui-blazor 渐变闪屏
Maui-blazor gradient splash screen
是否可以设置渐变启动画面?
In example
<MauiSplashScreen Include="Resources\Images\splashscreen.svg" Color="#512BD4" />
我希望背景是渐变的,并在上面写上一句话
尝试过:
<MauiSplashScreen Include="Resources\gradientWithWord.svg" />
我试过设置图片,但是大小设置不正确
尝试在 MauiSplashScreen 上设置 BaseSize。
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.
如果我们没有为 bitmap-based 初始屏幕指定 BaseSize
,则图像不会调整大小。
如果我们没有为 vector-based 初始屏幕指定 BaseSize
值,则 SVG 中指定的尺寸将假定为基本尺寸。
尝试
<MauiSplashScreen Include="Resources\Images\splashscreen.svg" BaseSize="128,128" />
是否可以设置渐变启动画面? In example
<MauiSplashScreen Include="Resources\Images\splashscreen.svg" Color="#512BD4" />
我希望背景是渐变的,并在上面写上一句话
尝试过:
<MauiSplashScreen Include="Resources\gradientWithWord.svg" />
我试过设置图片,但是大小设置不正确
尝试在 MauiSplashScreen 上设置 BaseSize。
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.
如果我们没有为 bitmap-based 初始屏幕指定 BaseSize
,则图像不会调整大小。
如果我们没有为 vector-based 初始屏幕指定 BaseSize
值,则 SVG 中指定的尺寸将假定为基本尺寸。
尝试
<MauiSplashScreen Include="Resources\Images\splashscreen.svg" BaseSize="128,128" />