Initialize FishIQ development foundation

This commit is contained in:
reaper
2026-08-28 10:56:14 -05:00
commit 3eb459a307
81 changed files with 1642 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import 'package:fishiq_mobile/main.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('FishIQ launches successfully', (tester) async {
await tester.pumpWidget(const FishIQApp());
expect(find.text('FishIQ'), findsOneWidget);
expect(find.text('Plan smarter. Fish better.'), findsOneWidget);
});
}