-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainScreenView.swift
62 lines (53 loc) · 2.12 KB
/
MainScreenView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import SwiftUI
struct MainScreenView: View {
var body: some View {
VStack {
Spacer()
// Создаем горизонтальный стек для иконки и кнопки
HStack {
// Системная иконка, похожая на иконку Telegram
Image(systemName: "paperplane.fill") // Используйте системную иконку для замены
.resizable()
.scaledToFit()
.frame(width: 30, height: 30)
// Кнопка для открытия Telegram
Button(action: {
openTelegram()
}) {
Text("Telegram")
.font(.headline)
.padding()
.background(Color.blue)
.foregroundColor(.white)
.cornerRadius(8)
}
}
.padding()
Text("MADE BY MISHAVAC")
.font(.largeTitle)
.padding()
Spacer()
// Вы можете добавить другие элементы сюда, если нужно
}
}
// Функция для открытия Telegram
func openTelegram() {
// Ссылка на Telegram профиль
let username = "WhiteAngelsHaveNoWings" // Ваш username в Telegram
if let url = URL(string: "tg://resolve?domain=\(username)") {
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url)
} else {
// Если Telegram не установлен, открываем ссылку в Safari
if let webURL = URL(string: "https://t.me/\(username)") {
UIApplication.shared.open(webURL)
}
}
}
}
}
struct MainScreenView_Previews: PreviewProvider {
static var previews: some View {
MainScreenView()
}
}