blob: 93d0b234a78087e8864e5dbafb3ca7e3d9f7d9ec (
plain)
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
|
//
// BulletPointText.swift
// MullvadVPN
//
// Created by Mojgan on 2025-01-10.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import SwiftUI
struct BulletPointText: View {
let text: String
let bullet = "•"
var body: some View {
HStack(alignment: .firstTextBaseline) {
Text(bullet)
.font(.body)
.foregroundColor(UIColor.secondaryTextColor.color)
Text(text)
.font(.body)
.foregroundColor(UIColor.secondaryTextColor.color)
.lineLimit(nil)
.multilineTextAlignment(.leading)
}
.frame(maxWidth: .infinity, alignment: .leading)
}
}
|