Runt
2025-06-27 5e101b6d445d9bbff119d308c454c55d0a03de14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
//  LiveActivity.swift
//  LiveProject
//
//  Created by 倪路朋 on 6/25/25.
//
 
import Foundation
import SwiftUI
 
struct LiveActivity: View {
    var body: some View {
        NavigationView{
            ZStack{
                
            }
        }
    }
}
 
struct Bottombtns:View {
    var body: some View {
        VStack{
            
            HStack(){
                MButton(icon: IconPortrait()){
                    
                }
                MButton(text: "30帧"){
                    
                }
                MButton(valid: .INVALID,text: "+"){
                    
                }
            }
            HStack{
                LButton(text: "设备"){
                    
                }
                LButton(text: "RTMP"){
                    
                }
                LButton(text: "文件"){
                    
                }
                LButton(text: "文本"){
                    
                }
            }
            HStack{
                Text("编码正常").font(Font.system(size: 14)).foregroundColor(Color.init("ColorGreen"))
                Text("推流正常").font(Font.system(size: 14)).foregroundColor(Color.init("ColorGreen"))
                Text("内存正常").font(Font.system(size: 14)).foregroundColor(Color.init("ColorGreen"))
            }
        }
    }
}
 
struct LiveActivity_Previews: PreviewProvider{
    static var previews: some View {
        Bottombtns();
    }
    
}