GitBrowser
notes-app
7567369/src/NotesApplication.cs
Name Message Date
📁 Activities Add swipe-to-delete for notes 4 days ago
📁 Adapters Add swipe-to-delete for notes 4 days ago
📁 Auth Add OneDrive sign-in, folder picker, and cached note list screen 4 days ago
📁 Graph Add swipe-to-delete for notes 4 days ago
📁 Models Add OneDrive sign-in, folder picker, and cached note list screen 4 days ago
📁 Resources Add swipe-to-delete for notes 4 days ago
📁 Storage Add OneDrive sign-in, folder picker, and cached note list screen 4 days ago
📁 Views Add swipe-to-delete for notes 4 days ago
📄 AndroidManifest.xml Add note editing, new note creation, and a save/discard flow 4 days ago
📄 MainActivity.cs Modernize UI with Material 3, real edge-to-edge, and navigation 4 days ago
📄 NotesApp.csproj Modernize UI with Material 3, real edge-to-edge, and navigation 4 days ago
📄 NotesApplication.cs Modernize UI with Material 3, real edge-to-edge, and navigation 4 days ago
📄 packages.lock.json Modernize UI with Material 3, real edge-to-edge, and navigation 4 days ago
📄 src/NotesApplication.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using Android.Runtime;
using Google.Android.Material.Color;

namespace NotesApp.Android;

[Application]
public class NotesApplication(IntPtr handle, JniHandleOwnership ownership)
    : Application(handle, ownership)
{
    public override void OnCreate()
    {
        base.OnCreate();
        DynamicColors.ApplyToActivitiesIfAvailable(this);
    }
}