I want to show large text (about 20 characters) on secondary tile, but on mobile screen and desktop Start menu text looks different (mobile text displayed without clipping). Is there any way to make text wrapping in tile on mobile screen?
This is how text looks on desktop:
This is how text looks on mobile device:
Code sample:
var secondaryTile = new SecondaryTile(Id.ToString(),
"Large large large large large text","secondary_tile_id=" + Id,
uri150X150Logo, TileSize.Square150x150)
{
VisualElements =
{
Square310x310Logo = uri310X310Logo,
Square44x44Logo = uri44X44Logo,
Square71x71Logo = uri71X71Logo,
Wide310x150Logo = uri310X150Logo,
Square150x150Logo = uri150X150Logo,
ForegroundText = ForegroundText.Dark,
ShowNameOnSquare150x150Logo = true,
ShowNameOnSquare310x310Logo = true,
ShowNameOnWide310x150Logo = true,
BackgroundColor = Colors.White
},
RoamingEnabled = false,
};
await secondaryTile.RequestCreateAsync();