From 217d1ac88080ccdcddee0be47ccbb374f8723eac Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Fri, 3 Jul 2020 19:29:25 -0500 Subject: [PATCH] Changed add button to be a menu. --- Multiplatform/Shared/MainApp.swift | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Multiplatform/Shared/MainApp.swift b/Multiplatform/Shared/MainApp.swift index e011aeca0..1be5b3720 100644 --- a/Multiplatform/Shared/MainApp.swift +++ b/Multiplatform/Shared/MainApp.swift @@ -35,9 +35,14 @@ struct MainApp: App { .toolbar { ToolbarItem() { - Button(action: { showSheet = true }, label: { + Menu { + Button("Add Web Feed", action: { showSheet = true }) + Button("Add Reddit Feed", action: { }) + Button("Add Twitter Feed", action: { }) + Button("Add Folder", action: { }) + } label : { AppAssets.addMenuImage - }).help("Add Feed") + } } ToolbarItem {