-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
44 lines (41 loc) · 1.19 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import 'package:flutter/material.dart';
import 'package:notes_app/screens/note_list.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Notes',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.deepPurple,
textTheme: const TextTheme(
headline5: TextStyle(
fontFamily: 'Sans',
fontWeight: FontWeight.bold,
color: Colors.black,
fontSize: 24),
bodyText2: TextStyle(
fontFamily: 'Sans',
fontWeight: FontWeight.bold,
color: Colors.black,
fontSize: 20),
bodyText1: TextStyle(
fontFamily: 'Sans',
fontWeight: FontWeight.normal,
color: Colors.black,
fontSize: 18),
subtitle2: TextStyle(
fontFamily: 'Sans',
fontWeight: FontWeight.normal,
color: Colors.black,
fontSize: 14),
),
),
home: const NoteList(),
);
}
}