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/FollowingView.swift
2025-07-16 06:40:07 +03:00

14 lines
280 B
Swift

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