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>
17 lines
394 B
Dart
17 lines
394 B
Dart
import 'package:flutter/material.dart';
|
|
import 'theme/app_theme.dart';
|
|
import 'widgets/app_shell.dart';
|
|
|
|
class OciDeckApp extends StatelessWidget {
|
|
const OciDeckApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'OciDeck',
|
|
theme: AppTheme.light,
|
|
debugShowCheckedModeBanner: false,
|
|
home: const AppShell(),
|
|
);
|
|
}
|
|
}
|