G-EIP-700-TLS-7-1-eip-steph.../dialer/lib/main.dart
stcb 21b6b0a29a
All checks were successful
/ mirror (push) Successful in 4s
SafeArea (#11)
Co-authored-by: AlexisDanlos <91090088+AlexisDanlos@users.noreply.github.com>
Reviewed-on: #11
2024-12-15 18:00:24 +00:00

24 lines
509 B
Dart

import 'package:dialer/features/home/home_page.dart';
import 'package:flutter/material.dart';
import 'package:dialer/features/contacts/contact_state.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return ContactState(
child: MaterialApp(
theme: ThemeData(
brightness: Brightness.dark
),
home: SafeArea(child: MyHomePage()),
)
);
}
}