GitBrowser
notes-app
9068ac2/src/NotesApplication.cs
Name Message Date
📁 Activities Add a Save option to the discard-changes dialog 3 days ago
📁 Adapters Add in-process note content caching with prefetch and preview refresh 3 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 padding to the notes list 4 days ago
📁 Storage Pre-populate new notes with the previous note's frontmatter 3 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 Pre-populate new notes with the previous note's frontmatter 3 days ago
📄 NotesApplication.cs Modernize UI with Material 3, real edge-to-edge, and navigation 4 days ago
📄 packages.lock.json Pre-populate new notes with the previous note's frontmatter 3 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);
    }
}