stcb
21b6b0a29a
All checks were successful
/ mirror (push) Successful in 4s
Co-authored-by: AlexisDanlos <91090088+AlexisDanlos@users.noreply.github.com> Reviewed-on: #11
24 lines
509 B
Dart
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()),
|
|
)
|
|
);
|
|
}
|
|
}
|