21 lines
535 B
Dart
21 lines
535 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:productivity_measure_app/screens/login.dart';
|
|
import 'package:productivity_measure_app/screens/splash.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
home: Splash(),
|
|
//theme: ThemeData(primarySwatch: Colors.lightGreen),
|
|
);
|
|
}
|
|
} |