Flutter desktop app for building Marp presentations via structured slide editors, with live preview, fullscreen presenter, and PDF/PPTX export. Includes Makefile quality gate, CI workflow, and full test suite. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 lines
266 B
Dart
6 lines
266 B
Dart
import 'package:flutter_riverpod/legacy.dart';
|
|
import '../models/slide.dart';
|
|
|
|
/// Global clipboard for a single copied slide.
|
|
/// Lives in the root ProviderScope so it is accessible from any tab.
|
|
final slideClipboardProvider = StateProvider<Slide?>((ref) => null);
|