16 lines
374 B
Dart
16 lines
374 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:smoke_cess_app/pages/main_page.dart';
|
|
|
|
void main() => runApp(const MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
static const String _title = 'Smoking Cessation App';
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(title: _title, home: MyHomePage());
|
|
}
|
|
}
|