This repository has been archived on 2024-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
dialer/lib/main.dart

23 lines
424 B
Dart
Raw Normal View History

// This is DEV
2024-09-13 18:14:58 +00:00
2024-09-16 15:07:04 +00:00
import 'package:dialer/pages/myHomePage.dart';
2024-09-13 11:14:10 +00:00
import 'package:flutter/material.dart';
void main() {
2024-09-16 15:07:04 +00:00
runApp(const MyApp());
2024-09-13 11:14:10 +00:00
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
2024-09-13 11:14:10 +00:00
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
brightness: Brightness.dark
),
2024-09-16 15:07:04 +00:00
home: const MyHomePage(),
2024-09-13 11:14:10 +00:00
);
}
}