2026-04-26 10:39:51 +10:00
|
|
|
import 'package:flutter/material.dart';
|
2026-04-26 12:00:14 +10:00
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
|
import 'app.dart';
|
2026-04-26 10:39:51 +10:00
|
|
|
|
2026-04-26 12:00:14 +10:00
|
|
|
void main() async {
|
|
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
runApp(
|
|
|
|
|
const ProviderScope(
|
|
|
|
|
child: App(),
|
|
|
|
|
),
|
|
|
|
|
);
|
2026-04-26 10:39:51 +10:00
|
|
|
}
|