Skip to content

Commit

Permalink
fixed typos #3
Browse files Browse the repository at this point in the history
  • Loading branch information
dimonovdd committed Apr 30, 2020
1 parent bc62cc3 commit 9bb438c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:views="clr-namespace:Samples.View"
xmlns:viewmodels="clr-namespace:Samples.ViewModel"
x:Class="Samples.View.HaptickFeedbackPage"
x:Class="Samples.View.HapticFeedbackPage"
Title="Vibration">
<views:BasePage.BindingContext>
<viewmodels:HaptickFeedbackViewModel />
<viewmodels:HapticFeedbackViewModel />
</views:BasePage.BindingContext>

<StackLayout>
<Label Text="Quickly and easily make the device HaptickFeedback." FontAttributes="Bold" Margin="12" />
<Label Text="Quickly and easily make the device HapticFeedback." FontAttributes="Bold" Margin="12" />

<ScrollView>
<StackLayout Padding="12,0,12,12" Spacing="6">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
namespace Samples.View
{
public partial class HaptickFeedbackPage : BasePage
public partial class HapticFeedbackPage : BasePage
{
public HaptickFeedbackPage()
public HapticFeedbackPage()
{
InitializeComponent();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

namespace Samples.ViewModel
{
public class HaptickFeedbackViewModel : BaseViewModel
public class HapticFeedbackViewModel : BaseViewModel
{
bool isSupported = true;

public HaptickFeedbackViewModel()
public HapticFeedbackViewModel()
{
ClickCommand = new Command(OnClick);
LongPressCommand = new Command(OnLongPress);
Expand Down
8 changes: 4 additions & 4 deletions Samples/Samples/ViewModel/HomeViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,10 @@ public HomeViewModel()
new[] { "vibration", "vibrate", "hardware", "device" }),
new SampleItem(
"📳",
"HaptickFeedback",
typeof(HaptickFeedbackPage),
"HaptickFeedback",
new[] { "HaptickFeedback", "Haptick", "Feedback", "hardware", "device" }),
"HapticFeedback",
typeof(HapticFeedbackPage),
"HapticFeedback",
new[] { "HapticFeedback", "Haptic", "Feedback", "hardware", "device" }),
new SampleItem(
"🔓",
"Web Authenticator",
Expand Down

0 comments on commit 9bb438c

Please sign in to comment.