blob: 136c7a6f2876908bbe75690a64b9332642970f75 (
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 © 2023 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
}
|