This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
LocalSpend-Tracker/lib/main.dart

19 lines
429 B
Dart
Raw Normal View History

2019-01-22 20:20:10 +00:00
import 'package:flutter/material.dart';
import 'package:local_spend/login_page.dart';
2019-01-22 20:20:10 +00:00
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'LocalSpend Tracker',
2019-01-22 20:20:10 +00:00
theme: ThemeData(
primarySwatch: Colors.blueGrey,
2019-01-22 20:20:10 +00:00
),
home: LoginPage(),
2019-01-22 20:20:10 +00:00
);
}
}