-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.dart
34 lines (30 loc) · 956 Bytes
/
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
import 'package:flutter/material.dart';
import 'package:xayn_swipe_it_example/repository/dog_repository.dart';
import 'pages/home.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: 'Swipe my Doggo',
debugShowCheckedModeBanner: false,
theme: ThemeData.light().copyWith(
floatingActionButtonTheme: const FloatingActionButtonThemeData(
backgroundColor: Colors.red,
),
appBarTheme: AppBarTheme(
backgroundColor: Colors.black12.withOpacity(0.6),
titleTextStyle: const TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold,
fontSize: 20,
),
elevation: 0.5,
)),
home: const Home(dogRepository: DogRepository()),
);
}
}