Files
suixinkan_uikit/suixinkan/UI/Profile/ProfileViewController.swift
汉秋 b7d74905b7 Add login flow, session routing, and MainTab shell aligned with reference UI.
Implement token-based root routing, Android-matched login screen, five-slot MainTabBar with scan action, and placeholder tab pages.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-06 15:12:34 +08:00

29 lines
647 B
Swift

//
// ProfileViewController.swift
// suixinkan
//
import SnapKit
import UIKit
/// Tab
final class ProfileViewController: BaseViewController {
private let titleLabel = UILabel()
override func setupUI() {
title = "我的"
titleLabel.text = "我的"
titleLabel.font = .systemFont(ofSize: 24, weight: .medium)
titleLabel.textAlignment = .center
titleLabel.textColor = AppColor.text333
view.addSubview(titleLabel)
}
override func setupConstraints() {
titleLabel.snp.makeConstraints { make in
make.center.equalToSuperview()
}
}
}