blob: 9f56350c5ef1ad8b0800477fcd6823aa4b398a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// RedeemVoucherViewConfiguration.swift
// MullvadVPN
//
// Created by Mojgan on 2023-09-12.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
import UIKit
struct RedeemVoucherViewConfiguration {
let adjustViewWhenKeyboardAppears: Bool
/// Hides the title when set to `true`.
let shouldUseCompactStyle: Bool
/// Custom margins to use for the compact style.
let layoutMargins: NSDirectionalEdgeInsets
}
|