G-EIP-700-TLS-7-1-eip-steph.../lib/main.dart

26 lines
539 B
Dart
Raw Normal View History

// This is DEV
2024-09-13 18:14:58 +00:00
2024-10-18 19:45:35 +00:00
import 'package:dialer/features/home/home_page.dart';
2024-09-13 11:14:10 +00:00
import 'package:flutter/material.dart';
2024-10-18 19:45:35 +00:00
import 'package:dialer/features/contacts/contact_state.dart';
2024-09-13 11:14:10 +00:00
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) {
2024-10-18 19:45:35 +00:00
return ContactState(
child: MaterialApp(
theme: ThemeData(
brightness: Brightness.dark
),
home: const MyHomePage(),
)
2024-09-13 11:14:10 +00:00
);
}
}