Improved the app for watch
This commit is contained in:
@@ -16,7 +16,7 @@ struct CueCardViewPresenter: View {
|
||||
CueCardView(card: card)
|
||||
}
|
||||
}
|
||||
.tabViewStyle(PageTabViewStyle(indexDisplayMode: .always))
|
||||
.tabViewStyle(.carousel)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@ struct CueCardView: View {
|
||||
VStack(alignment: .leading) {
|
||||
Text(card.content)
|
||||
.foregroundColor(.primary)
|
||||
.font(.system(size: 25))
|
||||
.font(.system(size: 12))
|
||||
.padding()
|
||||
.frame(height: 550)
|
||||
Spacer()
|
||||
|
||||
@@ -35,10 +35,13 @@ struct MainViewPresenter: View {
|
||||
|
||||
}
|
||||
.toolbar {
|
||||
ToolbarItem {
|
||||
Button(action: { modelContext.insert(PreviewData.project); try! modelContext.save() }) {
|
||||
Label("Add Item", systemImage: "plus")
|
||||
ToolbarItem(placement: .primaryAction) {
|
||||
Button {
|
||||
|
||||
} label: {
|
||||
Label("Sync", systemImage: "arrow.triangle.2.circlepath")
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
.navigationTitle("Projects")
|
||||
|
||||
Reference in New Issue
Block a user