SkillAgentSearch skills...

FTCoreText

An open source interface component that makes use of the CoreText framework to render static text content using a highly customisable markup syntax.

Install / Use

/learn @rafiki270/FTCoreText
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

FTCoreText

Cross‑platform rich text rendering with lightweight markup for iOS (Swift) and Android (Kotlin). The same localized strings render identically on both platforms.

Layout

  • iOS (Swift/SPM + Tuist demo): ios/ — see the iOS guide
  • Android (Kotlin/Gradle + sample): android/ — see the Android guide
  • Shared examples (texts/images used by both demos): shared/

Install

  • iOS (Swift Package Manager)

    • Xcode → File → Add Packages… → use: https://github.com/rafiki270/FTCoreText
    • Or in Package.swift:
      // swift-tools-version: 6.0
      import PackageDescription
      
      let package = Package(
          name: "YourApp",
          dependencies: [
              .package(url: "https://github.com/rafiki270/FTCoreText.git", from: "2.1.0")
          ],
          targets: [
              .target(name: "YourApp", dependencies: ["FTCoreText"]) 
          ]
      )
      
  • Android (Gradle)

    • Open android/ in Android Studio; the sample app already depends on the library module.
    • For your own app, either depend on the local module during development:
      // settings.gradle.kts
      include(":ftcoretext")
      
      // app/build.gradle.kts
      dependencies { implementation(project(":ftcoretext")) }
      
      …or (once published) add the Maven artifact:
      repositories { mavenCentral() }
      dependencies { implementation("io.liveui:ftcoretext-android:2.1.0") }
      

Learn More

Screenshots

iOS

<table> <tr> <td> <a href="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.12.png"> <img src="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.12.png" width="260"/> </a> </td> <td> <a href="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.15.png"> <img src="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.15.png" width="260"/> </a> </td> <td> <a href="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.17.png"> <img src="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.17.png" width="260"/> </a> </td> </tr> <tr> <td> <a href="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.20.png"> <img src="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.20.png" width="260"/> </a> </td> <td> <a href="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.24.png"> <img src="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.24.png" width="260"/> </a> </td> <td> <a href="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.28.png"> <img src="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.28.png" width="260"/> </a> </td> </tr> <tr> <td> <a href="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.32.png"> <img src="screenshots/ios/Simulator Screenshot - iPhone 16 Pro - 2025-09-10 at 18.59.32.png" width="260"/> </a> </td> <td></td> <td></td> </tr> </table>

Android

<table> <tr> <td> <a href="screenshots/android/Screenshot_20250910_185809.png"> <img src="screenshots/android/Screenshot_20250910_185809.png" width="260"/> </a> </td> <td> <a href="screenshots/android/Screenshot_20250910_185830.png"> <img src="screenshots/android/Screenshot_20250910_185830.png" width="260"/> </a> </td> <td> <a href="screenshots/android/Screenshot_20250910_185846.png"> <img src="screenshots/android/Screenshot_20250910_185846.png" width="260"/> </a> </td> </tr> <tr> <td> <a href="screenshots/android/Screenshot_20250910_185854.png"> <img src="screenshots/android/Screenshot_20250910_185854.png" width="260"/> </a> </td> <td> <a href="screenshots/android/Screenshot_20250910_185905.png"> <img src="screenshots/android/Screenshot_20250910_185905.png" width="260"/> </a> </td> <td></td> </tr> </table>

License

View on GitHub
GitHub Stars781
CategoryContent
Updated18d ago
Forks119

Languages

Swift

Security Score

100/100

Audited on Mar 15, 2026

No findings