mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-07-13 08:12:54 +02:00
feat: add setting view
This commit is contained in:
@@ -11,4 +11,5 @@ enum AppScene {
|
||||
case memos
|
||||
case trash
|
||||
case memo
|
||||
case settings
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// AppWindow.swift
|
||||
// Memola
|
||||
//
|
||||
// Created by Dscyre Scotti on 7/17/24.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
enum AppWindow: String, Identifiable {
|
||||
var id: String { rawValue }
|
||||
|
||||
case dashboard
|
||||
case settings
|
||||
|
||||
var url: URL? {
|
||||
URL(string: "memola:\(id)")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user