ProvideLocalResources.kt
# multiplatform
a
ProvideLocalResources.kt
Basically with this I can use
LocalResourceLocator
in any child screen module and it will still pull the right resource from the parent "shared" module
For fonts they can still live in the parent Shared module and be created this way:
Copy code
FontFamily(
        Font(
            resource = FontResource("font/your_custom_font.otf"),
            weight = FontWeight.Normal,
            style = FontStyle.Normal
        )
    )