krz/libre-edit

A free and private text editor for iOS.

clone: git clone https://gitbay.org/krz/libre-edit.git

main: LibreEdit/LibreEditApp.swift · raw

 1//
 2//  LibreEditApp.swift
 3//  LibreEdit
 4//
 5//  Created by Christian Cleberg on 2024-01-13.
 6//
 7
 8import SwiftUI
 9
10@main
11struct LibreEditApp: App {
12    var body: some Scene {
13        DocumentGroup(newDocument: TextFile()) { file in
14            ContentView(document: file.$document)
15        }
16    }
17}