FruitBankHybridApp/FruitBankHybrid/MainPage.xaml.cs

16 lines
356 B
C#

namespace FruitBankHybrid
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
private void OnActionButtonClick(object sender, EventArgs e)
{
//Add some code here to show how to communicate with a control in BlazorWebView
}
}
}