- Add comprehensive ControlGallery sample app with 12 pages demonstrating all 35+ controls - Add detailed ROADMAP.md with version milestones - Add README placeholders for VSIX icons and template images - Sample pages include: Home, Buttons, Labels, Entry, Pickers, Sliders, Toggles, Progress, Images, CollectionView, CarouselView, SwipeView, RefreshView 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
917 B
XML
21 lines
917 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="ControlGallery.App">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<Color x:Key="Primary">#512BD4</Color>
|
|
<Color x:Key="PrimaryDark">#3B1F9E</Color>
|
|
<Color x:Key="Secondary">#DFD8F7</Color>
|
|
<Color x:Key="Tertiary">#2B0B98</Color>
|
|
<Color x:Key="Gray100">#E1E1E1</Color>
|
|
<Color x:Key="Gray200">#C8C8C8</Color>
|
|
<Color x:Key="Gray300">#ACACAC</Color>
|
|
<Color x:Key="Gray400">#919191</Color>
|
|
<Color x:Key="Gray500">#6E6E6E</Color>
|
|
<Color x:Key="Gray600">#404040</Color>
|
|
<Color x:Key="Gray900">#212121</Color>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|