flutter-input-output-preview
Installation
SKILL.md
Flutter Input Output Preview
First we need a two pane widget to properly render on mobile and desktop:
import 'package:flutter/material.dart';
class TwoPane extends StatefulWidget {
const TwoPane({
super.key,
required this.primary,
required this.secondary,
required this.title,
this.actions = const [],
this.loading = false,
});