Skip to content

Commit

Permalink
Intialize Project
Browse files Browse the repository at this point in the history
  • Loading branch information
DanKyungu committed Aug 31, 2022
1 parent 6ce6db9 commit 18657d0
Show file tree
Hide file tree
Showing 33 changed files with 1,191 additions and 0 deletions.
Binary file added img/OverSheet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/OverSheet.Sample/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:OverSheet.Sample"
x:Class="OverSheet.Sample.App">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
12 changes: 12 additions & 0 deletions src/OverSheet.Sample/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace OverSheet.Sample
{
public partial class App : Application
{
public App()
{
InitializeComponent();

MainPage = new MainPage();
}
}
}
83 changes: 83 additions & 0 deletions src/OverSheet.Sample/MainPage.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
x:Class="OverSheet.Sample.MainPage"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">

<ContentPage.Resources>
<DataTemplate x:Key="BottomSheetTemplate" x:Name="BottomSheetTemplate">
<VerticalStackLayout
Padding="25"
Spacing="25"
VerticalOptions="Center">

<Image
HeightRequest="200"
Source="dotnet_bot.png"
WidthRequest="200" />

<Label
FontSize="18"
HorizontalOptions="Center"
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
SemanticProperties.HeadingLevel="Level1"
Text="Welcome to .NET Multi-platform App UI" />

<Label
FontSize="18"
HorizontalOptions="Center"
SemanticProperties.Hint="Counts the number of times you click"
Text="{Binding Count, StringFormat='Current count: {0}'}" />

<Button SemanticProperties.Hint="Increments the number of times you click" Text="Increment count" />

</VerticalStackLayout>
</DataTemplate>
</ContentPage.Resources>

<ScrollView>
<VerticalStackLayout
Padding="30,0"
Spacing="25"
VerticalOptions="Center">

<Image
HeightRequest="200"
HorizontalOptions="Center"
SemanticProperties.Description="Cute dot net bot waving hi to you!"
Source="dotnet_bot.png" />

<Label
FontSize="32"
HorizontalOptions="Center"
SemanticProperties.HeadingLevel="Level1"
Text="Hello, World!" />

<Label
FontSize="18"
HorizontalOptions="Center"
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
SemanticProperties.HeadingLevel="Level2"
Text="Welcome to .NET Multi-platform App UI" />

<HorizontalStackLayout Spacing="15">
<Button
x:Name="ShowBottomSheet"
Clicked="ShowBottomSheet_Clicked"
HorizontalOptions="Center"
SemanticProperties.Hint="Show Bottom Sheet"
Text="Show Bottom Sheet" />

<Button
x:Name="HideBottomSheet"
Clicked="HideBottomSheet_Clicked"
HorizontalOptions="Center"
SemanticProperties.Hint="Hide Bottom Sheet"
Text="Hide Bottom Sheet" />

</HorizontalStackLayout>

</VerticalStackLayout>
</ScrollView>

</ContentPage>
35 changes: 35 additions & 0 deletions src/OverSheet.Sample/MainPage.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@

using OverSheet.Sample.Modals;

namespace OverSheet.Sample
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}


private void ShowBottomSheet_Clicked(object sender, EventArgs e)
{
Application.Current.MainPage.ShowBottomSheet(GetBottomSheetView());
SemanticScreenReader.Announce(ShowBottomSheet.Text);

}

private void HideBottomSheet_Clicked(object sender, EventArgs e)
{
//this.HideBottomSheet();
Application.Current.MainPage.ShowBottomSheet(new FirstPage(), 40);
SemanticScreenReader.Announce(HideBottomSheet.Text);
}

private View GetBottomSheetView()
{
var view = (View)BottomSheetTemplate.CreateContent();
//view.BindingContext = BindingContext;
return view;
}
}
}
19 changes: 19 additions & 0 deletions src/OverSheet.Sample/MauiProgram.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
namespace OverSheet.Sample
{
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
});

return builder.Build();
}
}
}
40 changes: 40 additions & 0 deletions src/OverSheet.Sample/Modals/FirstPage.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
namespace OverSheet.Sample.Modals;

public class FirstPage : ContentView
{
public FirstPage()
{
Content = new Grid
{
Padding = new Thickness(50),
VerticalOptions = LayoutOptions.Center,
BackgroundColor = Colors.White,
HeightRequest = 400,
Children = {
new VerticalStackLayout
{
VerticalOptions = LayoutOptions.Center,
Spacing = 20,
Children =
{
new Label
{
HorizontalOptions = LayoutOptions.Center,
VerticalOptions = LayoutOptions.Center,
FontAttributes = FontAttributes.Bold,
FontSize = 35,
TextColor = Colors.Black,
Text = "First Page",

},
new Button
{
Text = "Dismiss",
Command = new Command(() => App.Current.MainPage.HideBottomSheet())
}
}
}
}
};
}
}
16 changes: 16 additions & 0 deletions src/OverSheet.Sample/Modals/SecondPage.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
namespace OverSheet.Sample.Modals;

public class SecondPage : ContentPage
{
public SecondPage()
{
Content = new VerticalStackLayout
{
BackgroundColor = Colors.Orange,
Children = {
new Label { HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.Center, Text = "Second Page"
}
}
};
}
}
55 changes: 55 additions & 0 deletions src/OverSheet.Sample/OverSheet.Sample.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0-android;net6.0-ios;<!--net6.0-maccatalyst--></TargetFrameworks>
<!--<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net6.0-windows10.0.19041.0</TargetFrameworks>-->
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net6.0-tizen</TargetFrameworks> -->
<OutputType>Exe</OutputType>
<RootNamespace>OverSheet.Sample</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>

<!-- Display name -->
<ApplicationTitle>OverSheet.Sample</ApplicationTitle>

<!-- App Identifier -->
<ApplicationId>com.companyname.oversheet.sample</ApplicationId>
<ApplicationIdGuid>994C2FCD-66CB-443D-93C0-28D4FD6D39DF</ApplicationIdGuid>

<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
</PropertyGroup>

<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />

<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />

<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" />

<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />

<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\OverSheet\OverSheet.csproj" />
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions src/OverSheet.Sample/Platforms/Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application android:allowBackup="true" android:icon="@mipmap/appicon" android:roundIcon="@mipmap/appicon_round" android:supportsRtl="true"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
11 changes: 11 additions & 0 deletions src/OverSheet.Sample/Platforms/Android/MainActivity.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using Android.App;
using Android.Content.PM;
using Android.OS;

namespace OverSheet.Sample
{
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity
{
}
}
16 changes: 16 additions & 0 deletions src/OverSheet.Sample/Platforms/Android/MainApplication.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using Android.App;
using Android.Runtime;

namespace OverSheet.Sample
{
[Application]
public class MainApplication : MauiApplication
{
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
: base(handle, ownership)
{
}

protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#512BD4</color>
<color name="colorPrimaryDark">#2B0B98</color>
<color name="colorAccent">#2B0B98</color>
</resources>
10 changes: 10 additions & 0 deletions src/OverSheet.Sample/Platforms/iOS/AppDelegate.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using Foundation;

namespace OverSheet.Sample
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}
32 changes: 32 additions & 0 deletions src/OverSheet.Sample/Platforms/iOS/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>arm64</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>XSAppIconAssets</key>
<string>Assets.xcassets/appicon.appiconset</string>
</dict>
</plist>
16 changes: 16 additions & 0 deletions src/OverSheet.Sample/Platforms/iOS/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using ObjCRuntime;
using UIKit;

namespace OverSheet.Sample
{
public class Program
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, typeof(AppDelegate));
}
}
}
Loading

0 comments on commit 18657d0

Please sign in to comment.