import 'package:calendar_test/screen/home_screen.dart';
import 'package:flutter/material.dart';
import 'package:intl/date_symbol_data_local.dart'; // this package adds intl package
void main() async {
WidgetsFlutterBinding.ensureInitialized(); // Ensure Flutter Framework is ready
await initializeDateFormatting(); // This helps to locate the country code
runApp(
MaterialApp(
theme: ThemeData(
fontFamily: "NotoSans",
useMaterial3: true,
),
home: HomeScreen(),
)
);
}
Dart
복사
