2026-02-25 10:57:43 +08:00
|
|
|
import 'package:flutter/material.dart';
|
2026-03-27 19:07:39 +08:00
|
|
|
import 'core/config/env.dart';
|
2026-03-27 14:05:03 +08:00
|
|
|
import 'app/di/injection.dart';
|
|
|
|
|
import 'app/app.dart';
|
2026-02-25 15:25:31 +08:00
|
|
|
|
|
|
|
|
void main() async {
|
|
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
await configureDependencies();
|
2026-03-27 19:07:39 +08:00
|
|
|
await Env.init();
|
2026-03-20 18:47:50 +08:00
|
|
|
|
2026-03-27 19:07:39 +08:00
|
|
|
runApp(const LinksyApp());
|
2026-02-25 10:57:43 +08:00
|
|
|
}
|