SDKBrowser Application
Telerik UI for .NET MAUI SDKBrowser is a set of examples that explain how to use the features of a control. The SDKBrowser shows the components in their pure form without adding extra styling and polishing. It's the go-to source for "how do I use X in Y control". Most of the code snippets available in the documentation are directly generated from the examples in the SDKBrowser (you can see special comments in the code for this).
You can access the SDKBrowser application in the following ways:
- If you have already installed Telerik UI for .NET MAUI, navigate to the /[installation-path]/Telerik UI for .NET MAUI [version]/Examples/SdkBrowser folder and open the
SdkBrowserMaui.sln
file; - You can explore the code directly in the .NET MAUI Sample Applications Repository on GitHub;
Run SDKBrowser on Windows
-
Open the
SDKBrowserMaui.sln
on Windows with Visual Studio 2022 Preview. Wait for the project to restore.
-
Select the target framework of the project.
-
Select the emulator or device on which you want to run the application.
- SDKBrowser application on WinUI.
Install and Run SDKBrowser on macOS
Review the macOS Install .NET MAUI GitHub Wiki page for more information how to get started on macOS.
Open Terminal inside the SdkBrowser app folder.
-
Run on macOS using the following command:
dotnet build -t:Run -f net8.0-maccatalyst
-
Run on iOS using the following command:
dotnet build -t:Run -f net8.0-ios
—This command starts a default simulator. To run the application on specific device, you need to provide the device ID. For example:dotnet build -t:Run -f net8.0-ios -p:_DeviceName=:v2:udid=02C556DA-64B8-440B-8F06-F8C56BB7CC22
where the device ID is02C556DA-64B8-440B-8F06-F8C56BB7CC22
.To find the ID:
- Open Xcode,
- Click Devices from the Window menu.
- Select Connected device.
Under Device Information, you will get an identifier, or UDID, of the device.
- SDKBrowser application on MacCatalyst.
- SDKBrowser application on Android and iOS.
Check the .NET MAUI Examples Apps topic which lists all the sample applications built with Telerik UI for .NET MAUI.