Camilo Andrés Gómez M.
Camilo Andrés Gómez M.
@malsabi i have it working like this in case you don't need anything from the binding public object ProvideValue(IServiceProvider serviceProvider) { return Translator.Instance[Key]; } Just return the string value and...
@malsabi I moved away from returning the binding and just return the string value. ``` [ContentProperty(nameof(Key))] internal class TranslateExtension : IMarkupExtension { public string Key { get; set; } public...
@malsabi yeah, that could be a downside as is the value being returned instead of the binding. Maybe dotnet team has made some progress on their investigation of this.