app-themes
01sampaio-tech/iOS-design-system
Skill Claude CodeCodex
Specialized widgets and themes for Music, Stocks, Weather, App Store, and Books apps.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
Specialized widgets and themes for Music, Stocks, Weather, App Store, and Books apps.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
Button widgets in iOS Design System - CupertinoButtonWidget and ButtonWidget with all variants.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
Guide to creating new widgets following iOS Design System patterns and conventions.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
Icons, tags, titles, descriptions, dividers, and markdown rendering for iOS Design System.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
Using flutterhooks for cleaner state management in iOS Design System widgets.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
Text fields, switches, pickers, date pickers, and form validation for iOS Design System.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
ScaffoldWidget, GroupedTableWidget, RowWidget, NavigationBar, and ToolBar for iOS Design System.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
Bottom sheets, modals, action sheets, and title sheets with search and navigation.
sampaio-tech/iOS-design-system
Skill Claude CodeCodex
This iOS Design System uses a centralized theme system with 8 color palettes, 22 typography styles, and automatic light/dark mode support.
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Explains the analytics feature in fluttercoremodules — EventEntity, how to define and track new events, the multi-provider architecture (Amplitude, Firebase Analytics, Mixpanel, PostHog, Statsig), remote config gating, and how analytics integrates with the route observer. Use when adding new analytics events…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Explains the core architecture of fluttercoremodules — Either, State sealed classes, SafeStateNotifier, GetStateNotifier, CacheBoolStateNotifier, setup providers (SharedPreferences, HTTP, dotenv), hooks, and shared widgets. Use when understanding or extending the core layer, implementing state machines, or setting up…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Everything about the locale feature in fluttercoremodules — what it does, all files, providers, use cases, and how to use it from an external app to persist and restore the user's chosen language. Use when working with locale/language persistence, asking whether locale is already implemented, or wiring locale into a…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Explains how feature modules are structured in fluttercoremodules — directory layout, domain/data/presentation layers, repository pattern, use case pattern, and how to implement a new feature module from scratch. Use when adding a new feature, understanding an existing feature module, or deciding where code belongs in…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Everything about the revenue feature in fluttercoremodules — RevenueCat integration, CustomerInfoStateNotifier, paywall presentation, subscription status, isPremiumCustomerProvider, presentPaywallForwarded, and app initialization. Use when working with in-app purchases, paywalls, subscription gating, or asking whether…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Everything about the review feature in fluttercoremodules — in-app review request, store listing redirect, feedback email via urllauncher, InAppReviewStateNotifier, LaunchFeedbackStateNotifier, and how to use both from a consuming app. Use when implementing rate-app flows, feedback buttons, or asking whether…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Everything about the route feature in fluttercoremodules — ShellRouteWidget, NavigationTab abstract class, navigatiorKeyProvider, defaultNavigatorObservers, and how to build a tab-based iOS navigation shell from a consuming app. Use when setting up tab navigation, asking whether a navigation shell exists, or wiring…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Everything about the settings feature in fluttercoremodules — HapticFeedbackStateNotifier, WakelockStateNotifier, SwitchRowWidget, CacheBoolRowWidget, ThemeRowWidget, and how to use them in a settings screen. Use when building settings UI, wiring haptic or wakelock toggles, or asking whether these settings are already…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Everything about the storage feature in fluttercoremodules — Firebase Storage integration, transparent local caching via SharedPreferences, GetDownloadUrlStateNotifier, GetJsonStateNotifier, ImageNetworkFromStorageWidget, SvgFromStorageWidget, and cache invalidation strategies. Use when loading images or JSON from…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Everything about the theme feature in fluttercoremodules — ThemeStateNotifier, ThemeRepository, how theme is persisted and restored, IosThemeData (IosLightThemeData / IosDarkThemeData), and how to wire theme into a consuming app. Use when implementing dark/light mode, asking whether theme persistence is already…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
All naming conventions used in fluttercoremodules — files, classes, providers, use cases, notifiers, widgets, hooks, failures, events, constants, family args, cache keys, abstract vs implementation classes, and directory structure. Use when creating any new file or symbol, or when verifying whether a name follows…
sampaio-tech/flutter-core-modules
Skill Claude CodeCodex
Explains how Riverpod and flutterhooks are used in fluttercoremodules — provider types, state flow through layers, hook patterns, HookConsumerWidget usage, common mistakes to avoid, and best practices. Use when writing new providers, widgets, or hooks, or when debugging state-related issues.
sampaio-tech/flutter-core-modules
Cursor rule Cursor
Rules for defining and tracking analytics events in fluttercoremodules. Covers EventEntity subclass structure, event naming, property types, provider gating, and forbidden patterns. Apply to all analytics event files and any file that calls .track().
sampaio-tech/flutter-core-modules
Cursor rule Cursor
Clean Architecture rules for fluttercoremodules. Enforces the three-layer domain/data/presentation separation, Either error handling, sealed State machine, and proper dependency direction. Apply to all Dart files in lib/.
sampaio-tech/flutter-core-modules
Cursor rule Cursor
Step-by-step guide for implementing new feature modules in fluttercoremodules. Covers file placement, naming conventions, provider wiring, the GetStateNotifier fetch pattern, CacheBoolStateNotifier settings pattern, and barrel export requirements. Apply when creating or extending any feature under lib/src/features/.