Files
toaster/apps/lib/toaster_app.dart
T
mars3142 db4bf5dbc1
Test / test (push) Successful in 3m15s
new scaffold and add toast_card
Signed-off-by: Peter Siegmund <developer@mars3142.org>
2026-04-18 16:56:51 +02:00

16 lines
361 B
Dart

import 'package:toaster/features/home/home_screen.dart';
import 'package:toaster_ui/toaster_ui.dart';
class ToasterApp extends StatelessWidget {
const ToasterApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: AppTheme.toaster,
home: const HomeScreen(),
);
}
}