Syncfusion maui getting started
Skill syncfusion/maui-ui-components-skills/skills/syncfusion-maui-getting-started
Skills for Syncfusion .NET MAUI components. Enable AI-assisted development with comprehensive documentation, code examples, and best practices for 100+ UI controls including DataGrid, Charts, Scheduler, and more.
npx -y skills add syncfusion/maui-ui-components-skills --skill syncfusion-maui-getting-startedAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Sets up and configures Syncfusion .NET MAUI components. Use when setting up, configuring, installing, or licensing Syncfusion .NET MAUI applications. Covers installation (NuGet, installers), licensing (generation, registration, errors), themes (Material, Cupertino, customization), AI service integration (Azure OpenAI, Claude, Gemini, DeepSeek, Groq), and package upgrades.
SKILL.md
9.0 KB, as published. Nobody here has run it
Getting Started with Syncfusion .NET MAUI
A comprehensive guide for installing, configuring, and setting up your development environment for Syncfusion .NET MAUI components
When to Use This Skill
ALWAYS use this skill immediately when the user needs to:
- Install or Setup: NuGet packages, installers (web, offline, Mac), installation troubleshooting
- License: Generate license keys, register keys in applications, resolve licensing errors, trial to paid upgrades
- Theme: Apply Material/Cupertino themes, light/dark modes, customize theme colors, override theme keys
- AI Integration: Configure Azure OpenAI, Claude, Gemini, DeepSeek, Groq, or custom AI services for Smart Components
- Tooling: Use Visual Studio or VS Code extensions, project templates, code snippets, Essential UI Kit
- Advanced: Implement Liquid Glass UI, upgrade NuGet packages, handle breaking changes
- Troubleshoot: Installation errors, licensing issues, theme problems, AI service configuration
This skill contains cross-cutting concerns that apply to all Syncfusion .NET MAUI components and applications.
Overview of Syncfusion .NET MAUI
Syncfusion .NET MAUI (Multi-platform App UI) is a comprehensive collection of high-performance, feature-rich UI components for building native cross-platform applications. Built on Microsoft's .NET MAUI framework, it enables developers to create modern, beautiful applications with a single codebase targeting:
- Windows (desktop applications)
- macOS (desktop applications)
- iOS (mobile applications)
- Android (mobile applications)
Key Capabilities
- 70+ Components: Grids, charts, gauges, editors, calendars, schedulers, and more
- Native Performance: Platform-specific optimizations for smooth UX
- Consistent API: Single codebase works across all platforms
- Theme Support: Material Design and Cupertino (iOS-style) themes with light/dark modes
- AI-Powered: Smart Components with AI service integration
- Accessibility: WCAG-compliant with screen reader support
- Localization: RTL and multi-language support
Component Categories
Syncfusion .NET MAUI includes components across multiple categories:
- Data Visualization (Charts, Gauges, TreeMap)
- Grids & Data (DataGrid, ListView, TreeView)
- Editors & Inputs (TextBox, ComboBox, DatePicker, Autocomplete)
- Calendars & Scheduling (Calendar, Scheduler, DateRangePicker)
- Navigation (TabView, TreeView, Accordion, Carousel)
- Layout (Cards, Chips, Avatar, Backdrop)
- Buttons & Indicators (Button, Checkbox, RadioButton, Badge, Busy Indicator)
- File Formats (PDF, Excel, Word, PowerPoint)
Platform Support & Requirements
Supported Platforms
| Platform | Minimum Version | Recommended |
|---|---|---|
| Windows | Windows 10 version 1809+ | Windows 11 |
| macOS | macOS 10.15+ | macOS 12+ |
| iOS | iOS 11+ | iOS 15+ |
| Android | Android 5.0 (API 21)+ | Android 12+ (API 31+) |
Framework Compatibility
Syncfusion .NET MAUI supports:
- .NET 6 (initial MAUI support)
- .NET 7 (enhanced features)
- .NET 8 (LTS with full feature set)
- .NET 9 (latest features) .NET 10 (latest features)
Development Environment
Windows Development:
- Visual Studio 2022 (v17.3+) for .NET 9, or Visual Studio 2026 for .NET 10
- .NET MAUI workload installed
- Android SDK (for Android development)
macOS Development:
- Visual Studio Code with .NET MAUI extension
- Xcode 13+ (for iOS/macOS development)
- .NET MAUI workload installed
Cross-Platform:
- Visual Studio Code with .NET MAUI extension
- .NET SDK 9.0+ (or 10.0+ for .NET 10 features)
System Requirements
π For complete system requirements, read: references/introduction-overview.md
Getting Started Guide
Quick Start (3 Steps)
Step 1: Install NuGet Package
dotnet add package Syncfusion.Maui.Core
# Or install specific component packages as needed
Step 2: Register License Key (Required for v20.2.0.x+)
In MauiProgram.cs, add before CreateMauiApp():
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
// Register Syncfusion license
string licenseKey = Environment.GetEnvironmentVariable("SYNCFUSION_LICENSE_KEY");
if (!string.IsNullOrEmpty(licenseKey))
{
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(licenseKey);
}
var builder = MauiApp.CreateBuilder();
// ... rest of configuration
}
}
Step 3: Apply Theme (Optional but recommended)
In App.xaml:
<Application xmlns:syncTheme="clr-namespace:Syncfusion.Maui.Themes;assembly=Syncfusion.Maui.Core">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<syncTheme:SyncfusionThemeResourceDictionary VisualTheme="MaterialLight"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
π For detailed installation instructions, read: references/installation-nuget.md
Documentation and Navigation Guide
1. Getting Started & Installation
When to read these files: User needs to install Syncfusion, troubleshoot installation, or understand platform requirements.
π references/introduction-overview.md
- What is Syncfusion .NET MAUI
- Cross-platform capabilities and architecture
- Complete component ecosystem overview
- Supported platforms (Windows, macOS, iOS, Android)
- Detailed system requirements
- Framework compatibility (.NET 6, 7, 8, 9, 10)
- Development environment setup
π references/installation-nuget.md
- Installing NuGet packages via Package Manager UI
- Installing via .NET CLI (
dotnet add package) - Package Manager Console commands
- Managing package dependencies
- Version management and updates
- Verifying package installation
π references/installation-installers.md
- Web installer: download and installation process
- Offline installer: download and installation process
- Mac installer: download and installation process
- Installer comparison (when to use each)
- Installer vs NuGet packages
- Post-installation verification
π references/installation-errors.md
- Common installation errors and solutions
- Package restore failures
- Version conflicts
- Platform-specific installation issues
- Troubleshooting steps
2. Tooling & IDE Integration
When to read these files: User needs Visual Studio or VS Code extensions, project templates, code snippets, or tooling features.
π references/visual-studio-integration.md
- Syncfusion .NET MAUI Visual Studio extension overview
- Extension download and installation
- Project templates and Template Studio
- Toolbox control for drag-and-drop
- Essential UI Kit integration
- Code snippet library
- Syncfusion notifications and updates
- Using project creation wizards
π references/vscode-integration.md
- Syncfusion .NET MAUI VS Code extension overview
- Extension download and installation from marketplace
- Creating projects with VS Code extension
- Code snippets for MAUI components
- Essential UI Kit for VS Code
- Command palette integration
- Debugging MAUI apps in VS Code
π references/icons-reference.md
- Syncfusion icon library for MAUI
- Using built-in icons in applications
- Material icons support
- Icon font resources
- Icon sizing and styling
- Custom icon integration
3. Advanced Features
When to read these files: User needs Liquid Glass UI effects or package upgrade guidance.
π references/liquid-glass-ui.md
- Liquid Glass UI overview and design philosophy
- Getting started with Liquid Glass UI
- Available glassy controls (Button, Card, Entry, etc.)
- Styling and blur effects
- Transparency and frosted glass effects
- Implementation examples and patterns
- Customization options
π references/upgrade-packages.md
- How to upgrade Syncfusion MAUI NuGet packages
- Upgrading via Package Manager UI
- Upgrading via .NET CLI
- Version compatibility considerations
- Handling breaking changes between versions
- Migration guides for major updates
- Testing after upgrades
- Rollback strategies
Gives 0 of the 12 instructions most project setup skills give
Counted across 999 of the 1,637 authors here whose files we hold, read 2026-08-06
- ask one question at a timein 29 of 999, across 28 files
- detect the package manager from lockfilesin 28 of 999, across 9 files
- present findings to the userin 25 of 999, across 4 files
- explore current repo statein 24 of 999, across 3 files
- update the agent skills block in place if it existsin 24 of 999, across 3 files
- install husky lint-staged and prettierin 23 of 999, across 4 files
- create the lintstagedrc filein 22 of 999, across 3 files
- commit all changed filesin 22 of 999, across 3 files
- run lint-staged to verify it worksin 22 of 999, across 3 files
- initialize huskyin 21 of 999, across 2 files
- create the husky pre-commit filein 21 of 999, across 2 files
- create a prettierrc file if missingin 21 of 999, across 2 files
Said here and by no other author read
- use this skill for Syncfusion MAUI setup
- install the Syncfusion NuGet package
- register the Syncfusion license key
- apply the Syncfusion theme via XAML resources
- read referenced markdown files for detailed instructions
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once.