blob: e3dac0fbb1dfe02f3d0a50dd57ee8a98e6336bd7 (
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
|
//
// 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)
}
}
}
|