This repository has been archived on 2025-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
ios_app/Shared/Views/Tab/Profile/FollowersView.swift
2025-07-16 06:40:07 +03:00

14 lines
284 B
Swift

import SwiftUI
struct FollowersView: View {
let followers: [String]
var body: some View {
List(followers, id: \.self) { user in
Text(user)
}
.navigationTitle("Подписчики")
.navigationBarTitleDisplayMode(.inline)
}
}