Skip to content

Commit

Permalink
Merge pull request #19 from wukann/fix/samplecode
Browse files Browse the repository at this point in the history
fix: namespace on sample code
  • Loading branch information
muak committed Dec 9, 2023
2 parents 42febaf + 75bb7b2 commit 2371092
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static MauiApp CreateMauiApp()
<ContentPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:sv="clr-namespace:AiForms.Renderers;assembly=SettingsView"
xmlns:sv="clr-namespace:AiForms.Settings;assembly=SettingsView"
x:Class="Sample.Views.SettingsViewPage">

<sv:SettingsView HasUnevenRows="true">
Expand Down Expand Up @@ -113,7 +113,7 @@ SettingsViewのプロパティ設定はApp.xamlに記述した方が良いかも
```xml
<Application xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:sv="clr-namespace:AiForms.Renderers;assembly=SettingsView"
xmlns:sv="clr-namespace:AiForms.Settings;assembly=SettingsView"
x:Class="Sample.App">
<Application.Resources>
<ResourceDictionary>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static MauiApp CreateMauiApp()
<ContentPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:sv="clr-namespace:AiForms.Renderers;assembly=SettingsView"
xmlns:sv="clr-namespace:AiForms.Settings;assembly=SettingsView"
x:Class="Sample.Views.SettingsViewPage">

<sv:SettingsView HasUnevenRows="true">
Expand Down Expand Up @@ -113,7 +113,7 @@ For example...
```xml
<Application xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:sv="clr-namespace:AiForms.Renderers;assembly=SettingsView"
xmlns:sv="clr-namespace:AiForms.Settings;assembly=SettingsView"
x:Class="Sample.App">
<Application.Resources>
<ResourceDictionary>
Expand Down

0 comments on commit 2371092

Please sign in to comment.