Add control gallery sample and roadmap documentation

- 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>
This commit is contained in:
logikonline
2025-12-19 05:24:35 -05:00
parent 1d9338d823
commit f945d2a537
38 changed files with 1711 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace ControlGallery;
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new AppShell();
}
}