22 lines
538 B
Dart
22 lines
538 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:learn_project/screens/home.dart';
|
|
|
|
void main() => runApp(MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
title: 'Recipes',
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.fromSwatch().copyWith(
|
|
primary: Color(0xff263341),
|
|
secondary: Color(0xff8DB646), // Your accent color
|
|
),
|
|
),
|
|
home: HomePage(),
|
|
);
|
|
}
|
|
}
|