Skip to content

Instantly share code, notes, and snippets.

@pm64
Created August 7, 2020 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pm64/747b38a39d737f82c6fc5cefac17a9e9 to your computer and use it in GitHub Desktop.
Save pm64/747b38a39d737f82c6fc5cefac17a9e9 to your computer and use it in GitHub Desktop.
public static class PaintUtils
{
public interface ICalculateTextWidth
{
double CalculateWidth(string text);
}
public static double GetTextWidth(string text)
{
return DependencyService.Get<ICalculateTextWidth>().CalculateWidth(text);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment