custom-plugin-flutter-skill-ui
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);