diff --git a/.github/workflows/development-action.yml b/.github/workflows/development-action.yml index f144067..0795712 100644 --- a/.github/workflows/development-action.yml +++ b/.github/workflows/development-action.yml @@ -32,4 +32,4 @@ jobs: file: ./TestResults/coverage.cobertura.xml flags: unittests name: codecov-umbrella - #fail_ci_if_error: true + #fail_ci_if_error: true \ No newline at end of file diff --git a/sample/CountryData.Sample.MAUI/CountryData.Sample.MAUI/MainPage.xaml.cs b/sample/CountryData.Sample.MAUI/CountryData.Sample.MAUI/MainPage.xaml.cs index 2d53b19..1674cab 100644 --- a/sample/CountryData.Sample.MAUI/CountryData.Sample.MAUI/MainPage.xaml.cs +++ b/sample/CountryData.Sample.MAUI/CountryData.Sample.MAUI/MainPage.xaml.cs @@ -1,23 +1,22 @@ using CountryData.Sample.MAUI.ViewModels; -namespace CountryData.Sample.MAUI; - -public partial class MainPage : ContentPage +namespace CountryData.Sample.MAUI { - int count = 0; - - public MainPage(MainViewModel mainViewModel) - { - InitializeComponent(); - BindingContext = mainViewModel; - } - - //private void OnCounterClicked(object sender, EventArgs e) - //{ - // count++; - // CounterLabel.Text = $"Current count: {count}"; + public partial class MainPage : ContentPage + { + int count = 0; - // SemanticScreenReader.Announce(CounterLabel.Text); - //} -} + public MainPage(MainViewModel mainViewModel) + { + InitializeComponent(); + BindingContext = mainViewModel; + } + // Uncomment this method if you need it + //private void OnCounterClicked(object sender, EventArgs e) + //{ + // count++; + // CounterLabel.Text = $"Current count: {count}"; + //} + } +} \ No newline at end of file