26 lines
544 B
Dart
26 lines
544 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:inkubator/login.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
theme: ThemeData(
|
|
splashColor: Colors.transparent,
|
|
highlightColor: Colors.transparent,
|
|
),
|
|
debugShowCheckedModeBanner: false,
|
|
routes: {
|
|
'/': (context) => LoginView(),
|
|
},
|
|
);
|
|
}
|
|
}
|