Schedule-ICTIS/Schedule ICTIS/Main/Views/NoScheduleView.swift
Vladimir Dubovik bb268cc6ad Commit
2025-02-19 12:43:52 +03:00

25 lines
483 B
Swift

//
// NoScheduleView.swift
// Schedule ICTIS
//
// Created by Mironov Egor on 12.12.2024.
//
import SwiftUI
struct NoScheduleView: View {
var body: some View {
VStack {
ScrollView (showsIndicators: false) {
Text("Пока что расписания нет😪")
.padding(.top, 100)
.font(.custom("Montserrat-SemiBold", size: 17))
}
}
}
}
#Preview {
NoScheduleView()
}