29 lines
892 B
Dart
29 lines
892 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:local_spend/pages/home_page.dart';
|
|
import 'package:local_spend/pages/login_page.dart';
|
|
import 'package:local_spend/pages/receipt_page.dart';
|
|
import 'package:local_spend/pages/spash_screen.dart';
|
|
import 'package:local_spend/config.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
//var config = ConfigWrapper.of(context);
|
|
return new MaterialApp(
|
|
title: "Splash and Token Authentication",
|
|
theme: new ThemeData(
|
|
primarySwatch: Colors.blueGrey,
|
|
),
|
|
routes: <String, WidgetBuilder>{
|
|
"/HomePage": (BuildContext context) => HomePage(),
|
|
"/LoginPage": (BuildContext context) => LoginPage(),
|
|
"/ReceiptPage": (BuildContext context) => ReceiptPage(),
|
|
},
|
|
home: SplashScreen(),
|
|
);
|
|
}
|
|
}
|