2025-01-21 23:56:47 +08:00

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',
),
);
}
}