2021-02-20 13:23:29 +01:00
|
|
|
//
|
|
|
|
// PickServerViewController.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by 高原 on 2021/2/20.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
class PickServerViewController: UIViewController {
|
|
|
|
let titleLabel: UILabel = {
|
|
|
|
let label = UILabel()
|
|
|
|
label.font = .boldSystemFont(ofSize: 34)
|
2021-02-23 08:25:48 +01:00
|
|
|
label.textColor = Asset.Colors.Label.primary.color
|
2021-02-23 05:41:56 +01:00
|
|
|
label.text = L10n.Scene.ServerPicker.title
|
2021-02-20 13:23:29 +01:00
|
|
|
label.adjustsFontForContentSizeCategory = true
|
|
|
|
label.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
label.numberOfLines = 0
|
|
|
|
return label
|
|
|
|
}()
|
|
|
|
}
|