This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Privacy Policy — Remittance Tracker | |
| Effective Date: August 12, 2025 | |
| Remittance Tracker ("the App", "we", "us", or "our") respects your privacy. This Privacy Policy explains how we handle your information when you use our app. | |
| 1. Information We Collect | |
| All remittance records, recipient details, and other information you enter into the App are stored locally on your device. | |
| We do not collect, transmit, or store any personal or financial data on our servers. | |
| 2. How Your Data is Used |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @resultBuilder | |
| enum AttributedStringBuilder { | |
| static func buildBlock(_ components: NSAttributedString...) -> NSAttributedString { | |
| let attributedString = NSMutableAttributedString() | |
| for component in components { | |
| attributedString.append(component) | |
| } | |
| return attributedString | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Write your code below 🏦 | |
| struct SwiftBank { | |
| private let password: String | |
| private var balance: Double = 0 { | |
| didSet { | |
| if balance < 100 { | |
| displayLowBalanceMessage() | |
| } | |
| } | |
| } |