Loading repository data…
Loading repository data…
rafiki270 / repository
An open source interface component that makes use of the CoreText framework to render static text content using a highly customisable markup syntax.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Cross‑platform rich text rendering with lightweight markup for iOS (Swift) and Android (Kotlin). The same localized strings render identically on both platforms.
ios/ — see the iOS guideandroid/ — see the Android guideshared/iOS (Swift Package Manager)
https://github.com/rafiki270/FTCoreTextPackage.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)
android/ in Android Studio; the sample app already depends on the library module.// 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") }