Hello
I want do my Xamarin form app multi language, no only display information by on url ( Spanish on this casi) but I will like display Spanish url if device is in Spanish and if not display English url, how I can do it?
Now I have this on MainPage.xaml.cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace APPNAME
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
WebView webView = new WebView
{
Source = new UrlWebViewSource
{
Url = "SPANISH URL"
},
VerticalOptions = LayoutOptions.FillAndExpand
};
// Build the page.
this.Content = new StackLayout
{
Children =
{
webView
}
};
}
}
Thanks for your help