Ocideck/lib/app.dart
Brenno de Winter dd2e91d61b Initial commit: OciDeck Marp presentation builder
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>
2026-06-02 23:28:39 +02:00

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(),
);
}
}