-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeaturesViewController.xaml
58 lines (43 loc) · 2.14 KB
/
FeaturesViewController.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MauiSample.FeaturesViewController">
<ContentPage.Content>
<TableView Intent="Settings">
<TableRoot>
<TableSection Title= "Privay Manager">
<SwitchCell
Text="Push"
OnChanged="enablePushFeature_OnChanged"
x:Name="enabledPushFeatureSwitch"
Tapped="enablePushFeature_OnChanged"/>
<SwitchCell
Text="Message Center"
OnChanged="enableMessageCenterFeature_OnChanged"
x:Name="enableMessageCenterFeatureSwitch"
Tapped="enableMessageCenterFeature_OnChanged"/>
<SwitchCell
Text="Automation"
OnChanged="enableInAppAutomationFeature_OnChanged"
x:Name="enableInAppAutomationFeatureSwitch"
Tapped="enableInAppAutomationFeature_OnChanged"/>
<SwitchCell
Text="Analytics"
OnChanged="enableAnalyticsFeature_OnChanged"
x:Name="EnableAnalyticsFeatureSwitch"
Tapped="enableAnalyticsFeature_OnChanged"/>
<SwitchCell
Text="Tags AND Attributes"
OnChanged="enableTagsAndAttributesFeature_OnChanged"
x:Name="enableTagsAndAttributesFeatureSwitch"
Tapped="enableTagsAndAttributesFeature_OnChanged"/>
<SwitchCell
Text="Contacts"
OnChanged="enableContactsFeature_OnChanged"
x:Name="enableContactsFeatureSwitch"
Tapped="enableContactsFeature_OnChanged"/>
</TableSection>
</TableRoot>
</TableView>
</ContentPage.Content>
</ContentPage>