- Download Roboto Fonts fonts.google.com
- Copy the .ttf files to Resources\Fonts in your .NET MAUI project.
- Register your fonts in your project in MauiProgram.cs
- San Francisco Font
- San Francisco Font Weights to Roboto
- Demo App
Apple uses the San Francisco font in its products. Google uses the Roboto font in its Material Design System. Follow these steps if you want to do the same in your .NET MAUI app.


The Apple San Francisco font is available for download here . However according to the license:
“you may use the Apple Font solely for creating mock-ups of user interfaces to be used in software products running on Apple’s iOS, iPadOS, macOS or tvOS operating systems, as applicable”.In .NET MAUI you can still access the San Francisco font on iOS by using this syntax.

San Francisco | Roboto |
---|---|
.SFUI-Ultralight | RobotoThin |
.SFUI-Thin | RobotoExtraLight |
.SFUI-Light | RobotoLight |
.SFUI-Regular | RobotoRegular |
.SFUI-Medium | RobotoMedium |
.SFUI-Semibold | RobotoSemiBold |
.SFUI-Bold | RobotoBold |
.SFUI-Heavy | RobotoExtraBold |
.SFUI-Black | RobotoBlack |
Here is a test page showing San Francisco and Roboto side-by-side on an iPhone 15 pro. Get the code.
