Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created November 15, 2017 15:20
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 juucustodio/6c56b07f7108a899fcf8036ebfd081be to your computer and use it in GitHub Desktop.
Save juucustodio/6c56b07f7108a899fcf8036ebfd081be to your computer and use it in GitHub Desktop.
Example of Multilingual in Xamarin.Forms applications - http://julianocustodio.com/multilingue
using Plugin.Multilingual;
using Xamarin.Forms;
namespace Multilingual
{
public partial class App : Application
{
public App()
{
InitializeComponent();
AppResources.Culture = CrossMultilingual.Current.DeviceCultureInfo;
MainPage = new MainPage();
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment