23 lines
423 B
Dart
23 lines
423 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'pages/welcome.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
home: const WelcomePage(),
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
fontFamily: 'Poppins',
|
|
),
|
|
);
|
|
}
|
|
}
|