txtodo

[DORMANT] a minimalist todo list app inspired by jeff huang
git clone git://git.figbert.com/txtodo.git
Log | Files | Refs | README

HomeHeaderView.swift (411B)


      1 //
      2 //  HomeHeaderView.swift
      3 //  txtodo (iOS)
      4 //
      5 //  Created by FIGBERT on 8/9/20.
      6 //
      7 
      8 import SwiftUI
      9 
     10 struct HomeHeaderView: View {
     11     var body: some View {
     12         HStack {
     13             Spacer()
     14             Text("title")
     15                 .underline()
     16             Spacer()
     17         }
     18     }
     19 }
     20 
     21 struct HomeHeaderView_Previews: PreviewProvider {
     22     static var previews: some View {
     23         HomeHeaderView()
     24     }
     25 }