skip
skip copied to clipboard
Skip transpiler for creating SwiftUI apps for iOS and Android
The documentation site https://skip.tools/docs/ isn’t on Github, and I wish it were, so I could file pull requests on it.
https://github.com/orgs/skiptools/discussions/370#discussioncomment-12467273 There are a bunch of images (and other resources) available on one platform but not another. For example, `star.leadinghalf.fill` is available on iOS as a system image, but the...
There's no `max-width` on the paragraphs of the Skip documentation, so the lines go as wide as the monitor will allow. I wrote a little CSS override to set `p...
https://skip.tools/docs/platformcustomization/#compiler-directives includes this warning: > Because the Skip tooling does not know the value of any symbols other than `os(Android)` and `!os(Android)`, we strongly recommend adding `os(Android)` or `!os(Android)` conditions...
https://skip.tools/docs/modules/skip-ui/#custom-fonts > ## Custom Fonts > > Custom fonts can be embedded and referenced using `Font.custom`. Fonts are loaded differently depending on the platform. On iOS the custom font name...
On macOS, you have to set `ATSApplicationFontsPath`. https://developer.apple.com/documentation/BundleResources/Information-Property-List/ATSApplicationFontsPath > If you set this key, the system allows the app in the bundle to use the fonts at the specified path....
https://skip.tools/docs/faq/#xcode_cloud > You should be able to install Skip for an Xcode Cloud build using Homebrew, as per the documentation at https://developer.apple.com/documentation/xcode/making-dependencies-available-to-xcode-cloud#Use-a-custom-build-script-to-install-a-third-party-dependency-or-tool. I think more detail is needed. (Maybe even...
To edit Android fonts, especially navigation titles and tab bar titles, you have to edit your `Main.kt` and edit typography settings there. This should be in the docs somewhere. ```kotlin...
I recently came across the project and wanted to give it a shot for my app, Alidade (https://alidade.dev), but I noticed there doesn't seem to be any support for document-based...
Apropos #352, since users who want to set up custom fonts for nav bars and tab views need to do so with a `MaterialTheme` and a `Typography`, it would be...