import SwiftUI struct PushNotificationListView: View { @StateObject var viewModel = PushNotificationListViewModel() @State private var isInitialized = false var body: some View { BaseView(isLoading: $viewModel.isLoading) { VStack(alignment: .leading, spacing: 13.3) { titleBar ContentMainContentThemeView( themeList: viewModel.categories, selectTheme: { viewModel.selectedCategory = $0 }, selectedTheme: $viewModel.selectedCategory ) ScrollView(.vertical, showsIndicators: false) { LazyVStack(spacing: 0) { ForEach(0..