mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-05 10:18:47 +08:00
22 lines
429 B
Dart
22 lines
429 B
Dart
import 'package:custom_home_drawer/screen/home_screen.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Flutter Demo',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
),
|
|
home: const HomeScreen(),
|
|
);
|
|
}
|
|
}
|