This repository was archived by the owner on Nov 24, 2023. It is now read-only.
Typography JSON Structure #51
matthewmorek
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Background
Typography tokens play a crucial role in improving the developer experience of Kotlin and SwiftUI engineers by providing a standardised and efficient way to implement consistent typography styles in their applications.
Objective
Our goal is to create a universal JSON structure that could be converted from Figma (Tokens Studio) format into a final structure digestible by iOS and Android platforms at build time to generate required typography styles for apps.
Proposal
We're looking for comments on the following proposal for a typography tokens format.
Android (Kotlin)
In Kotlin,
TextStyle()
is a class that is used to define and configure the style for a text element in an Android application. It allows developers to set properties such as text colour, font size, font weight, and typeface. It provides a way to customise the appearance of text in a consistent and reusable manner.In this code, a
TextStyle
object is created with various properties like text colour, font size, font weight, font family, font style, and letter spacing.iOS (SwiftUI/UIKit)
In SwiftUI, developers can create custom typography by using the Font struct and modifiers to define the style for a text element. Here's an example code snippet to demonstrate this:
In this code, a Text element with the text "Hello World" is created. The font of the text is customised using the
.font
modifier and specifying the font name and size through the.custom
option. The text is made bold by using the.fontWeight
modifier with the.bold
option. The colour of the text is set to blue using the.foregroundColor
modifier. Lastly, the.lineLimit
modifier limits the text to only display one line.JSON Tokens
Based on the information gathered about styling text in both Kotlin and SwiftUI, here’s a suggested sample JSON structure for creating basic typographic features in both languages:
Specification
The above code can be boiled down to the following structure using JSON Schema.
The above schema will result in a sample object such as this one:
Concerns
Kotlin and SwiftUI typography APIs differ. Will this specification satisfy the requirements of both platforms?
Beta Was this translation helpful? Give feedback.
All reactions