You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
public class GraphicsDrawable : IDrawable { public void Draw(ICanvas canvas, RectF dirtyRect) { canvas.FontColor = Colors.Black; canvas.FontSize = 14; string markdownText = @"This is *italic text*, **bold text**, __underline text__, and ***bold italic text***."; IAttributedText attributedText = MarkdownAttributedTextReader.Read(markdownText); canvas.DrawText(attributedText, 10, 10, 400, 400); } }
Error : The method or operation is not implemented.
The text was updated successfully, but these errors were encountered: