custom-plugin-flutter-skill-ui

Installation
SKILL.md

custom-plugin-flutter: UI Development Skill

Quick Start - Production UI Pattern

class ResponsiveProductScreen extends ConsumerWidget {
  const ResponsiveProductScreen({Key? key}) : super(key: key);

  
  Widget build(BuildContext context, WidgetRef ref) {
    final isMobile = MediaQuery.of(context).size.width < 600;
    final productState = ref.watch(productProvider);

    return Scaffold(
      appBar: AppBar(
        title: const Text('Products'),
        elevation: 0,
      ),
      body: productState.when(
Related skills
Installs
4
GitHub Stars
8
First Seen
Mar 19, 2026