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
We just recently bought 2 licenses for LiveXaml but we have hit a huge wall/problem with our localization system which is critical enough to sadly make the plugin unusable. The whole app and phone become literally unresponsive if we try to use liveupdate and after a while shutdown and closes the debugger too. The code below is basically how we do the translation look up:
` public class LanguageStringExtension : IMarkupExtension
{
public string StringID { get; set; }
We just recently bought 2 licenses for LiveXaml but we have hit a huge wall/problem with our localization system which is critical enough to sadly make the plugin unusable. The whole app and phone become literally unresponsive if we try to use liveupdate and after a while shutdown and closes the debugger too. The code below is basically how we do the translation look up:
` public class LanguageStringExtension : IMarkupExtension
{
public string StringID { get; set; }
We access this class in xaml like this:
<Entry Placeholder="{local:LanguageString StringID={x:Static local:StringIDs.Username}}" HorizontalOptions="Fill" MinimumWidthRequest="10" Grid.Column="1" Grid.Row="1" Grid.ColumnSpan="2"/>
Localized resource is a singleton class with access to our translations in resx files.
The text was updated successfully, but these errors were encountered: