2023-02-14 11:18:53 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2023-02-14 14:02:26 +01:00
|
|
|
import 'package:smoke_cess_app/pages/main_page.dart';
|
2023-02-14 11:18:53 +01:00
|
|
|
|
2023-02-14 12:57:06 +01:00
|
|
|
void main() => runApp(const MyApp());
|
2023-02-14 11:18:53 +01:00
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
2023-02-14 12:57:06 +01:00
|
|
|
static const String _title = 'Smoking Cessation App';
|
2023-02-14 11:18:53 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-02-17 13:47:52 +01:00
|
|
|
return MaterialApp(title: _title, home: MyHomePage());
|
2023-02-14 11:18:53 +01:00
|
|
|
}
|
|
|
|
}
|