ItemListView+Toolbar.swift (287B)
1 import SwiftUI 2 3 extension ItemListView { 4 @ToolbarContentBuilder 5 var platformToolbar: some ToolbarContent { 6 // No toolbar on iOS - users interact with items directly 7 // (tap to toggle, swipe to delete, tap background to create) 8 ToolbarItemGroup {} 9 } 10 }