30 lines
647 B
Swift
30 lines
647 B
Swift
//
|
|
// SRWalletViewController.swift
|
|
// SynthReel
|
|
//
|
|
// Created by 澜声世纪 on 2025/12/10.
|
|
// Copyright © 2025 SR. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class SRWalletViewController: SRViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
sr_setupLayout()
|
|
}
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
super.viewWillAppear(animated)
|
|
self.navigationController?.isNavigationBarHidden = false
|
|
navigationController?.sr_setNavigationTitle("synthreel_my_wallet".localized, for: self)
|
|
}
|
|
}
|
|
|
|
extension SRWalletViewController {
|
|
func sr_setupLayout() {
|
|
|
|
}
|
|
}
|