Skip to content
Snippets Groups Projects
Commit 89e49fad authored by cruxfilm's avatar cruxfilm
Browse files

Merge branch 'dev'

Conflicts:
	enzevalos_iphone/SwiftUI/Inbox/InboxView.swift
parents 657f530a b95ab632
No related tags found
1 merge request!77Resolve "Make folders list slide in from the left instead of from the right"
......@@ -23,7 +23,6 @@ struct MailListView: View {
@State private var searchText = ""
@State private var searchType = SearchType.All
init(folderPath: String, folderName: String) {
fetchRequest = MailRecord.mailsInFolderFetchRequest(folderpath: folderPath)
self.folderPath = folderPath
......@@ -32,9 +31,10 @@ struct MailListView: View {
var body: some View {
VStack(alignment: .leading) {
SearchView(searchText: $searchText, searchType: $searchType).padding()
SearchView(searchText: $searchText, searchType: $searchType)
.padding()
mailList.padding(-12)
mailList
}
.navigationBarTitle(folderName, displayMode: .inline)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment