21 lines
427 B
Dart
21 lines
427 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(const RecipeJournal());
|
|
}
|
|
|
|
class RecipeJournal extends StatelessWidget {
|
|
const RecipeJournal({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Recipe Journal',
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
|
useMaterial3: true,
|
|
),
|
|
);
|
|
}
|
|
}
|