generated from jfversluis/Plugin.Maui.Feature
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd40b2f
commit 736e219
Showing
54 changed files
with
435 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Plugin (Android) (Debug)", | ||
"type": "maui", | ||
"request": "launch", | ||
"configuration": "Debug", | ||
"targetFramework": "net8.0-android", | ||
"project": "${workspaceRoot}/Plugin.Maui.Handlers.Sample/Plugin.Maui.Handlers.Sample.csproj", | ||
"preLaunchTask": "maui: Build" | ||
}, | ||
{ | ||
"name": "Plugin (iOS) (Debug)", | ||
"type": "maui", | ||
"request": "launch", | ||
"configuration": "Debug", | ||
"targetFramework": "net8.0-ios", | ||
"project": "${workspaceRoot}/Plugin.Maui.Handlers.Sample/Plugin.Maui.Handlers.Sample.csproj", | ||
"preLaunchTask": "maui: Build" | ||
}, | ||
{ | ||
"name": "Plugin (macOS) (Debug)", | ||
"type": "maui", | ||
"request": "launch", | ||
"configuration": "Debug", | ||
"targetFramework": "net8.0-maccatalyst", | ||
"project": "${workspaceRoot}/Plugin.Maui.Handlers.Sample/Plugin.Maui.Handlers.Sample.csproj", | ||
"preLaunchTask": "maui: Build" | ||
}, | ||
{ | ||
"name": "Plugin (Windows) (Debug)", | ||
"type": "maui", | ||
"request": "launch", | ||
"configuration": "Debug", | ||
"targetFramework": "net8.0-windows10.0.19041.0", | ||
"project": "${workspaceRoot}/Plugin.Maui.Handlers.Sample/Plugin.Maui.Handlers.Sample.csproj", | ||
"preLaunchTask": "maui: Build" | ||
}, | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
samples/Plugin.Maui.Feature.Sample/Platforms/Tizen/Main.cs
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
samples/Plugin.Maui.Feature.Sample/Platforms/Tizen/tizen-manifest.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
samples/Plugin.Maui.Feature.Sample/App.xaml → samples/Plugin.Maui.Handlers.Sample/App.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...es/Plugin.Maui.Feature.Sample/App.xaml.cs → ...s/Plugin.Maui.Handlers.Sample/App.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.../Plugin.Maui.Feature.Sample/AppShell.xaml → ...Plugin.Maui.Handlers.Sample/AppShell.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<Shell | ||
x:Class="Plugin.Maui.Feature.Sample.AppShell" | ||
x:Class="Plugin.Maui.Handlers.Sample.AppShell" | ||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:pages="clr-namespace:Plugin.Maui.Feature.Sample" | ||
xmlns:pages="clr-namespace:Plugin.Maui.Handlers.Sample" | ||
Shell.FlyoutBehavior="Disabled"> | ||
|
||
<ShellContent | ||
Title="Feature Plugin" | ||
Title="Handlers Plugin" | ||
ContentTemplate="{DataTemplate pages:MainPage}" /> | ||
|
||
</Shell> |
2 changes: 1 addition & 1 deletion
2
...ugin.Maui.Feature.Sample/AppShell.xaml.cs → ...gin.Maui.Handlers.Sample/AppShell.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?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="Plugin.Maui.Handlers.Sample.MainPage" | ||
xmlns:ios="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;assembly=Microsoft.Maui.Controls" | ||
ios:Page.UseSafeArea="False" | ||
Padding="20" | ||
BackgroundColor="White" | ||
Title="Plugin Maui Handlers"> | ||
|
||
<VerticalStackLayout | ||
Spacing="20"> | ||
<Border | ||
Stroke="#ededed" | ||
StrokeThickness="4" | ||
Background="#ededed" | ||
Padding="16,8" | ||
HorizontalOptions="Center"> | ||
<Border.StrokeShape> | ||
<RoundRectangle CornerRadius="20" /> | ||
</Border.StrokeShape> | ||
<Entry | ||
x:Name="entry" | ||
Placeholder="Lorem Ipsum" | ||
BackgroundColor="Transparent" | ||
ClearButtonVisibility="WhileEditing" | ||
TextTransform="Uppercase" | ||
Text="I'm an Entry Control" /> | ||
</Border> | ||
|
||
<Border | ||
Stroke="#ededed" | ||
StrokeThickness="4" | ||
Background="#ededed" | ||
Padding="16,8" | ||
HorizontalOptions="Center"> | ||
<Border.StrokeShape> | ||
<RoundRectangle CornerRadius="20" /> | ||
</Border.StrokeShape> | ||
<Editor | ||
x:Name="editor" | ||
BackgroundColor="Transparent" | ||
Placeholder="I'm an Editor Control" | ||
WidthRequest="300" | ||
HeightRequest="150"/> | ||
</Border> | ||
|
||
<Border | ||
Stroke="#ededed" | ||
StrokeThickness="4" | ||
Background="#ededed" | ||
Padding="16,8" | ||
HorizontalOptions="Center"> | ||
<Border.StrokeShape> | ||
<RoundRectangle CornerRadius="20" /> | ||
</Border.StrokeShape> | ||
<Picker | ||
x:Name="picker" | ||
BackgroundColor="Transparent" | ||
Title="I'm a Picker Control"> | ||
<Picker.ItemsSource> | ||
<x:Array Type="{x:Type x:String}"> | ||
<x:String>Baboon</x:String> | ||
<x:String>Capuchin Monkey</x:String> | ||
<x:String>Blue Monkey</x:String> | ||
<x:String>Squirrel Monkey</x:String> | ||
<x:String>Golden Lion Tamarin</x:String> | ||
<x:String>Howler Monkey</x:String> | ||
<x:String>Japanese Macaque</x:String> | ||
</x:Array> | ||
</Picker.ItemsSource> | ||
</Picker> | ||
</Border> | ||
</VerticalStackLayout> | ||
|
||
</ContentPage> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace Plugin.Maui.Handlers.Sample; | ||
|
||
public partial class MainPage : ContentPage | ||
{ | ||
public MainPage() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...mple/Platforms/Android/MainApplication.cs → ...mple/Platforms/Android/MainApplication.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ature.Sample/Platforms/iOS/AppDelegate.cs → ...mple/Platforms/MacCatalyst/AppDelegate.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...e.Sample/Platforms/MacCatalyst/Program.cs → ...s.Sample/Platforms/MacCatalyst/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...Feature.Sample/Platforms/Windows/App.xaml → ...andlers.Sample/Platforms/Windows/App.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<maui:MauiWinUIApplication | ||
x:Class="Plugin.Maui.Feature.Sample.WinUI.App" | ||
x:Class="Plugin.Maui.Handlers.Sample.WinUI.App" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:maui="using:Microsoft.Maui" | ||
xmlns:local="using:Plugin.Maui.Feature.Sample.WinUI"> | ||
xmlns:local="using:Plugin.Maui.Handlers.Sample.WinUI"> | ||
|
||
</maui:MauiWinUIApplication> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ure.Sample/Platforms/Windows/app.manifest → ...ers.Sample/Platforms/Windows/app.manifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...mple/Platforms/MacCatalyst/AppDelegate.cs → ...dlers.Sample/Platforms/iOS/AppDelegate.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...i.Feature.Sample/Platforms/iOS/Program.cs → ....Handlers.Sample/Platforms/iOS/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.