modernization + PostIt
This commit is contained in:
parent
95dec3636a
commit
71c4f5022c
46 changed files with 808 additions and 80 deletions
16
src/PostIt/PostIt.Android/MainActivity.cs
Normal file
16
src/PostIt/PostIt.Android/MainActivity.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using Android.App;
|
||||
using Android.Content.PM;
|
||||
using Avalonia;
|
||||
using Avalonia.Android;
|
||||
|
||||
namespace PostIt.Android;
|
||||
|
||||
[Activity(
|
||||
Label = "PostIt.Android",
|
||||
Theme = "@style/MyTheme.NoActionBar",
|
||||
Icon = "@drawable/icon",
|
||||
MainLauncher = true,
|
||||
ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize | ConfigChanges.UiMode)]
|
||||
public class MainActivity : AvaloniaMainActivity
|
||||
{
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue