29 lines
686 B
Dart
29 lines
686 B
Dart
// Quick test to verify Hunt feature works
|
|
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import '../hunt.dart';
|
|
|
|
class HuntTestApp extends StatelessWidget {
|
|
const HuntTestApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Hunt Feature Test',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
brightness: Brightness.light,
|
|
),
|
|
darkTheme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
brightness: Brightness.dark,
|
|
),
|
|
home: const Hunt(), // This now properly creates its own provider
|
|
);
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
runApp(const HuntTestApp());
|
|
}
|