mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-25 22:54:29 +00:00
b8bf5871fb
* ios: wallpapers * theme selection * applied theme colors and preset wallpaper * more places with background * one more * accent color * defaults * rename * background * no change to cell color * unneeded * changes * no global tint * defaults * removed unneeded class * for merging
26 lines
518 B
Swift
26 lines
518 B
Swift
//
|
|
// MPVolumeView.swift
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by Avently on 24.04.2024.
|
|
// Copyright © 2024 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
import UIKit
|
|
import AVKit
|
|
|
|
struct AudioDevicePicker: UIViewRepresentable {
|
|
func makeUIView(context: Context) -> some UIView {
|
|
let v = AVRoutePickerView(frame: .zero)
|
|
v.activeTintColor = .white
|
|
v.tintColor = .white
|
|
return v
|
|
}
|
|
|
|
func updateUIView(_ uiView: UIViewType, context: Context) {
|
|
|
|
}
|
|
}
|